View Javadoc

1   package org.catacomb.interlish.structure;
2   
3   
4   
5   public interface ActionRelay {
6   
7   
8       void action(String methodName);
9   
10      void actionS(String methodName, String sarg);
11  
12      void actionB(String methodName, boolean barg);
13  
14      void actionI(String methodName, int iarg);
15  
16      void actionD(String methodName, double darg);
17  
18      void actionO(String methodName, Object oarg);
19  
20  
21  
22  }