Files
java-design-patterns/front-controller/src/main/java/com/iluwatar/View.java
2015-07-19 13:54:07 +03:00

12 lines
138 B
Java

package com.iluwatar;
/**
*
* Views are the representations rendered for the user.
*
*/
public interface View {
void display();
}