package action; import java.awt.event.ActionEvent; import javax.swing.AbstractAction; import javax.swing.Action; import javax.swing.ImageIcon; import fenetres.create; public class actExpandNode extends AbstractAction{ /** * */ private static final long serialVersionUID = 1L; { putValue( Action.NAME, "Etendre ce node" ); putValue( Action.SMALL_ICON, new ImageIcon(create.class.getResource("/resources/expandnodemini.png")) ); putValue( Action.SHORT_DESCRIPTION, "Etendre ce node" ); } @Override public void actionPerformed(ActionEvent e) { fenetres.create.expandNode(fenetres.create.getSelectNode()); } }