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

(-)src/org/openide/WizardDescriptor.java (+27 lines)
Lines 35-40 Link Here
35
import java.awt.Window;
35
import java.awt.Window;
36
import java.beans.PropertyChangeListener;
36
import java.beans.PropertyChangeListener;
37
import java.beans.PropertyChangeEvent;
37
import java.beans.PropertyChangeEvent;
38
import java.io.IOException;
38
import java.net.URL;
39
import java.net.URL;
39
import java.lang.ref.WeakReference;
40
import java.lang.ref.WeakReference;
40
41
Lines 1156-1161 Link Here
1156
            index = 0;
1157
            index = 0;
1157
        }
1158
        }
1158
1159
1160
    }
1161
    
1162
    /** Instantiating iterator. PENDING
1163
    */
1164
    interface InstantiatingIterator extends Iterator {
1165
        
1166
        /** PENDING
1167
         *
1168
         * @param settings
1169
         * @throws IOException
1170
         * @return
1171
         */        
1172
        public java.util.Set instantiate (Object settings)
1173
            throws IOException;
1174
        
1175
        /** PENDING
1176
         *
1177
         * @param wizard
1178
         */        
1179
        public void initialize (WizardDescriptor wizard);
1180
        
1181
        /** PENDING
1182
         *
1183
         * @param wizard
1184
         */        
1185
        public void uninitialize (WizardDescriptor wizard);
1159
    }
1186
    }
1160
    
1187
    
1161
    private boolean lazyValidate (WizardDescriptor.Panel panel, WizardDescriptor.WizardPanel wizard) {
1188
    private boolean lazyValidate (WizardDescriptor.Panel panel, WizardDescriptor.WizardPanel wizard) {

Return to bug 42192