diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-01-09 23:35:45 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-01-09 23:35:45 +0800 |
| commit | 1b21d26487636e50d03979acd5ca4a2a07761a25 (patch) | |
| tree | d7d066b4e7491474f3a962593e97a2d6f0aa2ea2 /src/main/java/me/shedaniel/gui/SearchArgument.java | |
| parent | 77af6b3f548d34bfdafc585847d3d80ec783c7e7 (diff) | |
| download | RoughlyEnoughItems-1b21d26487636e50d03979acd5ca4a2a07761a25.tar.gz RoughlyEnoughItems-1b21d26487636e50d03979acd5ca4a2a07761a25.tar.bz2 RoughlyEnoughItems-1b21d26487636e50d03979acd5ca4a2a07761a25.zip | |
Starting off rewrite
Diffstat (limited to 'src/main/java/me/shedaniel/gui/SearchArgument.java')
| -rw-r--r-- | src/main/java/me/shedaniel/gui/SearchArgument.java | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/main/java/me/shedaniel/gui/SearchArgument.java b/src/main/java/me/shedaniel/gui/SearchArgument.java deleted file mode 100644 index 5eeddf01c..000000000 --- a/src/main/java/me/shedaniel/gui/SearchArgument.java +++ /dev/null @@ -1,36 +0,0 @@ -package me.shedaniel.gui; - -public class SearchArgument { - - public enum ArgumentType { - TEXT, MOD, TOOLTIP - } - - private ArgumentType argumentType; - private String text; - private boolean include; - - public SearchArgument(ArgumentType argumentType, String text, boolean include) { - this.argumentType = argumentType; - this.text = text; - this.include = include; - } - - public ArgumentType getArgumentType() { - return argumentType; - } - - public String getText() { - return text; - } - - public boolean isInclude() { - return include; - } - - @Override - public String toString() { - return String.format("Argument[%s]: name = %s, include = %b", argumentType.name(), text, include); - } - -} |
