Files
java-design-patterns/front-controller/src/main/java/com/iluwatar/front/controller/View.java
2015-07-24 11:32:22 +03:00

12 lines
155 B
Java

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