2015-07-19 13:54:07 +03:00

12 lines
147 B
Java

package com.iluwatar;
/**
*
* Commands are the intermediary between requests and views.
*
*/
public interface Command {
void process();
}