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

Quick Search    Search Deep

Source code: org/alicebot/server/core/util/ShellCommandable.java


1   // Decompiled by Jad v1.5.8c. Copyright 2001 Pavel Kouznetsov.
2   // Jad home page: http://www.geocities.com/kpdus/jad.html
3   // Decompiler options: packimports(3) 
4   
5   package org.alicebot.server.core.util;
6   
7   
8   public interface ShellCommandable
9   {
10  
11      public abstract String getShellID();
12  
13      public abstract String getShellDescription();
14  
15      public abstract String getShellCommands();
16  
17      public abstract void processShellCommand(String s);
18  }