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