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 201893
Collapse All | Expand All

(-)a/projectapi/apichanges.xml (+21 lines)
Lines 108-113 Link Here
108
108
109
    <changes>
109
    <changes>
110
110
111
    <change id="LookupProvider.Registration.ProjectType.position">
112
            <api name="general"/>
113
            <summary>Changed <code>LookupProvider.Registration.ProjectType.position</code> default value</summary>
114
            <version major="1" minor="39"/>
115
            <date day="11" month="9" year="2011"/>
116
            <author login="tzezula"/>
117
            <compatibility modification="yes">
118
                <p>
119
                    Behavioral change is that recompiled services with no explicit position will now be at 0 rather than MAX_VALUE,
120
                    meaning they will be ahead of rather than behind services with an explicit positive value.
121
                </p>
122
            </compatibility>
123
            <description>
124
                <p>
125
                    Changed the default value of the <code>LookupProvider.Registration.ProjectType.position</code>
126
                    to allow clients to order provided project <code>Lookup</code>s.
127
                </p>
128
            </description>
129
            <class package="org.netbeans.spi.project" name="LookupProvider"/>
130
            <issue number="201893"/>
131
        </change>
111
        <change id="ActionProviderMerger">
132
        <change id="ActionProviderMerger">
112
            <api name="general"/>
133
            <api name="general"/>
113
            <summary>Added <code>LookupProviderSupport.createActionProviderMerger</code> factory method</summary>
134
            <summary>Added <code>LookupProviderSupport.createActionProviderMerger</code> factory method</summary>
(-)a/projectapi/src/org/netbeans/spi/project/LookupProvider.java (-1 / +1 lines)
Lines 109-115 Link Here
109
            /**
109
            /**
110
             * Optional ordering.
110
             * Optional ordering.
111
             */
111
             */
112
            int position() default Integer.MAX_VALUE;
112
            int position() default 0;
113
        }
113
        }
114
    }
114
    }
115
115

Return to bug 201893