Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/trapezium/chisel/gui/ActionImpl.java


1   /*
2    * ActionImpl.java
3    *
4    * ActionListener extension with methods common to all ActionListener
5    * implementations
6    */
7   
8   package com.trapezium.chisel.gui;
9   
10  import java.awt.event.*;
11  
12  public interface ActionImpl extends ActionListener {
13      String getName();
14      void setName(String name);
15  }