1 9 10 package org.enhydra.jawe.actions; 11 12 import org.enhydra.jawe.*; 13 14 import java.awt.event.ActionEvent ; 15 16 19 public class EditProperties extends ActionBase { 20 21 public EditProperties (AbstractEditor editor) { 22 super(editor); 23 } 24 25 public void actionPerformed(ActionEvent e) { 26 editor.getGraph().startEditingAtCell(editor.getGraph().getSelectionCell()); 27 } 28 } 29 | Popular Tags |