Inheritance diagram for UpoProperties::
Public Methods | |
UpoProperties () | |
void | show () |
String | getText () |
void | onOk () |
Public Attributes | |
String | upoName |
String | tagName |
int | tagValue |
|
|
|
Reimplemented from PropertyDialog.
|
|
Reimplemented from PropertyDialog.
00199 { 00200 return upoName; 00201 } |
|
Reimplemented from PropertyDialog.
00204 { 00205 upoName = upoField.getText(); 00206 try { 00207 tagValue = Integer.parseInt(valueField.getText()); 00208 tagName = nameField.getText(); 00209 } 00210 catch(NumberFormatException e) { 00211 ErrorStreamArea.println("Not a number"); 00212 tagName = null; 00213 } 00214 } |
|
|
|
|
|
|