Fixed some warnings and started on the NetLog project

This commit is contained in:
Ziver Koc 2013-05-03 19:31:45 +00:00
parent db9b2bf307
commit 27b12e1b9b
29 changed files with 722 additions and 322 deletions

View file

@ -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() );
}
}