mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 16:58:47 +00:00
15 lines
193 B
Java
15 lines
193 B
Java
package com.iluwatar;
|
|
|
|
public abstract class Action {
|
|
|
|
private ActionType type;
|
|
|
|
public Action(ActionType type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public ActionType getType() {
|
|
return type;
|
|
}
|
|
}
|