This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 209059
Collapse All | Expand All

(-)a/openide.windows/apichanges.xml (+15 lines)
Lines 50-55 Link Here
50
<apidef name="winsys">Window System API</apidef>
50
<apidef name="winsys">Window System API</apidef>
51
</apidefs>
51
</apidefs>
52
<changes>
52
<changes>
53
<change id="topcomponent.shortname">
54
    <api name="winsys"/>
55
    <summary>Added method TopComponent.getShortName()</summary>
56
    <version major="6" minor="52"/>
57
    <date day="6" month="3" year="2012"/>
58
    <author login="saubrecht"/>
59
    <compatibility addition="yes" source="compatible" semantic="compatible" deprecation="no" deletion="no" modification="no"/>
60
    <description>
61
        <p>The new method can be used to retrieve a short version of TopComponent's
62
        display name, i.e. display name that does no include the name of activated
63
        Node.</p>
64
    </description>
65
    <class package="org.openide.windows" name="TopComponent"/>
66
    <issue number="209059"/>
67
</change>
53
<change id="topcomponent.busy">
68
<change id="topcomponent.busy">
54
    <api name="winsys"/>
69
    <api name="winsys"/>
55
    <summary>Added method TopComponent.makeBusy(boolean).</summary>
70
    <summary>Added method TopComponent.makeBusy(boolean).</summary>
(-)a/openide.windows/manifest.mf (-1 / +1 lines)
Lines 1-6 Link Here
1
Manifest-Version: 1.0
1
Manifest-Version: 1.0
2
OpenIDE-Module: org.openide.windows
2
OpenIDE-Module: org.openide.windows
3
OpenIDE-Module-Specification-Version: 6.51
3
OpenIDE-Module-Specification-Version: 6.52
4
OpenIDE-Module-Localizing-Bundle: org/openide/windows/Bundle.properties
4
OpenIDE-Module-Localizing-Bundle: org/openide/windows/Bundle.properties
5
AutoUpdate-Essential-Module: true
5
AutoUpdate-Essential-Module: true
6
6
(-)a/openide.windows/src/org/openide/windows/TopComponent.java (+11 lines)
Lines 999-1004 Link Here
999
    public String getDisplayName() {
999
    public String getDisplayName() {
1000
        return displayName;
1000
        return displayName;
1001
    }
1001
    }
1002
1003
    /**
1004
     * Short version of TopComponent's name that doesn't include the name of
1005
     * activated Node.
1006
     * @return Short version of TopComponent's display name. The default implementation
1007
     * just delegates to getDisplayName().
1008
     * @since 6.52
1009
     */
1010
    public String getShortName() {
1011
        return getDisplayName();
1012
    }
1002
    
1013
    
1003
    /** Sets localized html display name of this <code>TopComponent</code>.
1014
    /** Sets localized html display name of this <code>TopComponent</code>.
1004
     * Hmtl name usually contains basic html tags for text coloring and style.
1015
     * Hmtl name usually contains basic html tags for text coloring and style.

Return to bug 209059