12 lines
147 B
Java
Raw Normal View History

2015-07-19 12:44:51 +03:00
package com.iluwatar;
/**
*
* Commands are the intermediary between requests and views.
*
*/
2015-07-19 12:44:51 +03:00
public interface Command {
void process();
}