home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / swing / text / DefaultEditorKit$PasteAction.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  550 b   |  18 lines

  1. package javax.swing.text;
  2.  
  3. import java.awt.event.ActionEvent;
  4.  
  5. public class DefaultEditorKit$PasteAction extends TextAction {
  6.    public DefaultEditorKit$PasteAction() {
  7.       super("paste-from-clipboard");
  8.    }
  9.  
  10.    public void actionPerformed(ActionEvent var1) {
  11.       JTextComponent var2 = ((TextAction)this).getTextComponent(var1);
  12.       if (var2 != null) {
  13.          var2.paste();
  14.       }
  15.  
  16.    }
  17. }
  18.