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