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