8 lines
163 B
Java
8 lines
163 B
Java
package abstractfactory;
|
|
|
|
// Every text field must be able to render and return its value
|
|
public interface TextField {
|
|
void render();
|
|
String getValue();
|
|
}
|