home *** CD-ROM | disk | FTP | other *** search
/ Borland JBuilder 6 / jbuilder6.iso / IBM VisualAge for Java Enterprise v4.0 Retail / ivj40 / setup / IDE.Cab / F77575_BasicSmartGuideButtonsUIEnterAction.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-04-25  |  945 b   |  23 lines

  1. package com.ibm.ivb.sguides.basic;
  2.  
  3. import com.ibm.ivb.sguides.SmartGuideButtons;
  4. import java.awt.event.ActionEvent;
  5. import javax.swing.AbstractAction;
  6.  
  7. class BasicSmartGuideButtonsUI$EnterAction extends AbstractAction {
  8.    SmartGuideButtons sgbuttons;
  9.  
  10.    BasicSmartGuideButtonsUI$EnterAction(SmartGuideButtons var1) {
  11.       super("enterAction");
  12.       this.sgbuttons = var1;
  13.    }
  14.  
  15.    public void actionPerformed(ActionEvent var1) {
  16.       System.out.println(var1);
  17.    }
  18.  
  19.    public boolean isEnabled() {
  20.       return true;
  21.    }
  22. }
  23.