8 lines
149 B
Java
8 lines
149 B
Java
|
//: typeinfo/Operation.java
|
|||
|
// <20>2015 MindView LLC: see Copyright.txt
|
|||
|
|
|||
|
public interface Operation {
|
|||
|
String description();
|
|||
|
void command();
|
|||
|
} ///:~
|