Fixed some warnings and started on the NetLog project
This commit is contained in:
parent
db9b2bf307
commit
27b12e1b9b
29 changed files with 722 additions and 322 deletions
|
|
@ -54,8 +54,7 @@ import zutil.ui.wizard.listener.BlockingWizardListener;
|
|||
*/
|
||||
public class Wizard implements ActionListener{
|
||||
public static final boolean DEBUG = false;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
|
||||
/** Some defoult backgrounds for the sidebar */
|
||||
public static final String BACKGROUND_1 = "zutil/data/wizard1.jpg";
|
||||
public static final String BACKGROUND_2 = "zutil/data/wizard2.jpg";
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ public class WizardActionHandler implements ActionListener, FocusListener, ListS
|
|||
* JList
|
||||
*/
|
||||
else if(c instanceof JList){
|
||||
JList o = (JList) c;
|
||||
JList<?> o = (JList<?>) c;
|
||||
o.addListSelectionListener( this );
|
||||
}
|
||||
}
|
||||
|
|
@ -115,7 +115,7 @@ public class WizardActionHandler implements ActionListener, FocusListener, ListS
|
|||
* JList
|
||||
*/
|
||||
else if(c instanceof JList){
|
||||
JList o = (JList) c;
|
||||
JList<?> o = (JList<?>) c;
|
||||
values.put( o.getName() , o.getSelectedValue() );
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue