Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissilb committed Oct 22, 2023
1 parent 8bd7077 commit ca805ee
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,26 @@ public Filter(String pattern, boolean allow, boolean deactivated) {
public String getPattern() {
return pattern;
}

public void setPattern(String pattern) {
this.pattern = pattern;
}

public boolean getAllow() {
return allow;
}

public void setAllow(boolean allow) {
this.allow = allow;
}

public boolean getDeactivated() {
return deactivated;
}

public void setDeactivated(boolean deactivated) {
this.deactivated = deactivated;
}

public Filter clone() {
Filter clone = new Filter(pattern, allow, deactivated);
Expand Down

0 comments on commit ca805ee

Please sign in to comment.