KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * Authors:
3  * Stefanovic Nenad chupo@iis.ns.ac.yu
4  * Bojanic Sasa sasaboy@neobee.net
5  *
6  */

7
8 package org.enhydra.jawe.actions;
9
10 import org.enhydra.jawe.*;
11 import org.enhydra.jawe.actions.*;
12
13 import org.enhydra.jawe.config.*;
14
15 import java.awt.event.*;
16
17 import javax.swing.*;
18
19 /**
20  * Class that realizes <B>Options</B> action.
21  */

22 public class Config extends ActionBase{
23
24    public Config (PackageEditor editor) {
25       super(editor);
26    }
27
28    public void actionPerformed(ActionEvent e) {
29       ConfigDialog.getInstance().showConfigDialog();
30    }
31
32 }
33
34
Popular Tags