KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > server > framework > AceCommandHandlerInterface


1 /*
2  * AceCommandHandlerInterface.java
3  *
4  * Created on August 22, 2002, 5:21 PM
5  */

6
7 package com.quikj.server.framework;
8
9 /**
10  *
11  * @author amit
12  */

13 public interface AceCommandHandlerInterface
14 {
15     public void actionPerformed(String JavaDoc command_line, AceCommandSession session);
16     
17     public String JavaDoc usage();
18 }
19
20
Popular Tags