Inheritance diagram for OutProperties::
Public Methods | |
OutProperties () | |
void | show () |
String | getText () |
void | onOk () |
Public Attributes | |
String | destination = "" |
|
00353 { 00354 super("Destination name"); 00355 00356 destField = new JTextField(30); 00357 addPair("Destination:", destField); 00358 } |
|
Reimplemented from PropertyDialog.
00361 { 00362 destField.setText(destination); 00363 super.show(); 00364 } |
|
Reimplemented from PropertyDialog.
00367 { 00368 return destination; 00369 } |
|
Reimplemented from PropertyDialog.
00372 { 00373 destination = destField.getText(); 00374 } |
|
|