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

(-)apichanges.xml (+15 lines)
Lines 80-85 Link Here
80
    <!-- ACTUAL CHANGES BEGIN HERE: -->
80
    <!-- ACTUAL CHANGES BEGIN HERE: -->
81
81
82
    <changes>
82
    <changes>
83
        <change id="J2eeModuleProvider.ConfigSupport.saveConfiguration">
84
            <api name="j2eeserver"/>
85
            <summary>Add method that allows devmodules to save configuration.</summary>
86
            <version major="1" minor="6"/>
87
            <date day="2" month="3" year="2005"/>
88
            <author login="pbuzek@netbeans.org"/>
89
            <compatibility addition="yes"/>
90
            <description>
91
                <p>Project modules have no way to save the configuration.
92
                The workaround used by app server plugin that calls Save All is
93
                not acceptable. Exposing save operation.
94
                </p>
95
            </description>
96
            <class package="org.netbeans.modules.j2ee.deployment.devmodules.spi" name="J2eeModuleProvider"/>
97
         </change>
83
        <change id="Deployment-addInstanceListener">
98
        <change id="Deployment-addInstanceListener">
84
            <api name="j2eeserver"/>
99
            <api name="j2eeserver"/>
85
            <summary>Added addInstanceListener and removeInstanceListener methods to Deployment class.</summary>
100
            <summary>Added addInstanceListener and removeInstanceListener methods to Deployment class.</summary>
(-)src/org/netbeans/modules/j2ee/deployment/devmodules/spi/J2eeModuleProvider.java (+3 lines)
Lines 181-186 Link Here
181
         * @param ejbtype dtd name for type of ejb: 'message-drive', 'entity', 'session'.
181
         * @param ejbtype dtd name for type of ejb: 'message-drive', 'entity', 'session'.
182
         */
182
         */
183
        public void ensureResourceDefinedForEjb(String ejbname, String ejbtype);
183
        public void ensureResourceDefinedForEjb(String ejbname, String ejbtype);
184
        
185
        /** Save the changes in configuration*/
186
        public void saveConfiguration();
184
    }
187
    }
185
    
188
    
186
    /**
189
    /**

Return to bug 55414