KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > jawe > actions > EditProperties


1 /*
2  * Authors:
3  * Stefanovic Nenad chupo@iis.ns.ac.yu
4  * Bojanic Sasa sasaboy@neobee.net
5  * Puskas Vladimir vpuskas@eunet.yu
6  * Pilipovic Goran zboniek@uns.ac.yu
7  *
8  */

9
10 package org.enhydra.jawe.actions;
11
12 import org.enhydra.jawe.*;
13
14 import java.awt.event.ActionEvent JavaDoc;
15
16 /**
17  * Class that realizes <B>properties</B> action.
18  */

19 public class EditProperties extends ActionBase {
20
21    public EditProperties (AbstractEditor editor) {
22       super(editor);
23    }
24
25    public void actionPerformed(ActionEvent JavaDoc e) {
26       editor.getGraph().startEditingAtCell(editor.getGraph().getSelectionCell());
27    }
28 }
29
Popular Tags