Horus Doc || Java GUI Reference || Doxygen's quick Index  

OutProperties Class Reference

Inheritance diagram for OutProperties::

PropertyDialog List of all members.

Public Methods

 OutProperties ()
void show ()
String getText ()
void onOk ()

Public Attributes

String destination = ""

Constructor & Destructor Documentation

OutProperties::OutProperties   [inline]
 

00353     {
00354         super("Destination name");
00355 
00356         destField = new JTextField(30);
00357         addPair("Destination:", destField);
00358     }


Member Function Documentation

void OutProperties::show   [inline]
 

Reimplemented from PropertyDialog.

00361     {
00362         destField.setText(destination);
00363         super.show();
00364     }

String OutProperties::getText   [inline, virtual]
 

Reimplemented from PropertyDialog.

00367     {
00368         return destination;
00369     }

void OutProperties::onOk   [inline, virtual]
 

Reimplemented from PropertyDialog.

00372     {
00373         destination = destField.getText();
00374     }


Member Data Documentation

String OutProperties::destination = ""
 


The documentation for this class was generated from the following file:
Generated on Mon Jan 27 15:11:24 2003 for JavaReference by doxygen1.2.12 written by Dimitri van Heesch, © 1997-2001