KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > oddjob > designer > model > ComponentAction


1 /*
2  * (c) Rob Gordon 2005
3  */

4 package org.oddjob.designer.model;
5
6 /**
7  *
8  */

9 public interface ComponentAction {
10
11     public String JavaDoc getName();
12     
13     public void perform();
14 }
15
Popular Tags