aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/gui/SearchArgument.java
diff options
context:
space:
mode:
authorUnknown <shekwancheung0528@gmail.com>2019-01-09 23:35:45 +0800
committerUnknown <shekwancheung0528@gmail.com>2019-01-09 23:35:45 +0800
commit86e9c7588dab15b783995105d06861740454a833 (patch)
treed7d066b4e7491474f3a962593e97a2d6f0aa2ea2 /src/main/java/me/shedaniel/gui/SearchArgument.java
parent8b89fff542fb941e209f0b25d3c6ea4f72518f70 (diff)
downloadRoughlyEnoughItems-86e9c7588dab15b783995105d06861740454a833.tar.gz
RoughlyEnoughItems-86e9c7588dab15b783995105d06861740454a833.tar.bz2
RoughlyEnoughItems-86e9c7588dab15b783995105d06861740454a833.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.java36
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);
- }
-
-}