-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAction.java
More file actions
36 lines (31 loc) · 807 Bytes
/
Action.java
File metadata and controls
36 lines (31 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package Frameworkpackage;
public class Action
{
private String actionName;
private String fullClassPath;
private boolean isBypassed;
public String getActionName() {
return actionName;
}
public void setActionName(String actionName) {
this.actionName = actionName;
}
public String getFullClassPath() {
return fullClassPath;
}
public void setFullClassPath(String fullClassPath) {
this.fullClassPath = fullClassPath;
}
public boolean isBypassed() {
return isBypassed;
}
public void setBypassed(boolean isBypassed) {
this.isBypassed = isBypassed;
}
public Action(String actionName, String fullClassPath, boolean isBypassed) {
super();
this.actionName = actionName;
this.fullClassPath = fullClassPath;
this.isBypassed = isBypassed;
}
}