KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > rero > gui > toolbar > DCCAction


1 package rero.gui.toolbar;
2
3 import rero.gui.*;
4
5 import java.awt.event.*;
6
7 public class DCCAction implements ToolAction
8 {
9    public void actionPerformed(MouseEvent ev)
10    {
11       SessionManager.getGlobalCapabilities().showOptionDialog("DCC Options");
12    }
13
14    public String JavaDoc getDescription()
15    {
16       return "DCC Options";
17    }
18
19    public int getIndex()
20    {
21       return 24;
22    }
23 }
24
Popular Tags