Class Editor
java.lang.Object
|
+----java.awt.Component
|
+----java.awt.Container
|
+----java.awt.Window
|
+----java.awt.Frame
|
+----Editor
- public class Editor
- extends Frame
- implements ActionListener
This class implements editor in separate window.
-
Editor(Project)
- Constructs editor associated with our applet.
-
actionPerformed(ActionEvent)
-
Processes action events occurring on this component.
-
setText(String)
- Updates text area with given text.
Editor
public Editor(Project applet)
- Constructs editor associated with our applet.
- Parameters:
- applet - our applet.
actionPerformed
public void actionPerformed(ActionEvent e)
- Processes action events occurring on this component.
- Parameters:
- e - the action event.
- See Also:
- ActionListener
setText
public void setText(String text)
- Updates text area with given text.
- Parameters:
- text - new text for update.