aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/cc/polyfrost/oneconfig/utils
diff options
context:
space:
mode:
authorWyvest <45589059+Wyvest@users.noreply.github.com>2022-06-29 16:10:18 +0700
committerWyvest <45589059+Wyvest@users.noreply.github.com>2022-06-29 16:10:43 +0700
commit975826256806e19306987e05aa0e59f70d09b0b1 (patch)
treede3f33b41cd63774b92c4075a051b12a4cb2d4d5 /src/main/java/cc/polyfrost/oneconfig/utils
parentd4c12a8786597a38fe1a8e31b5be3835dffbb0c6 (diff)
downloadOneConfig-975826256806e19306987e05aa0e59f70d09b0b1.tar.gz
OneConfig-975826256806e19306987e05aa0e59f70d09b0b1.tar.bz2
OneConfig-975826256806e19306987e05aa0e59f70d09b0b1.zip
unfinished stuff
Diffstat (limited to 'src/main/java/cc/polyfrost/oneconfig/utils')
-rw-r--r--src/main/java/cc/polyfrost/oneconfig/utils/holder/Holder.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main/java/cc/polyfrost/oneconfig/utils/holder/Holder.java b/src/main/java/cc/polyfrost/oneconfig/utils/holder/Holder.java
new file mode 100644
index 0000000..9488d4b
--- /dev/null
+++ b/src/main/java/cc/polyfrost/oneconfig/utils/holder/Holder.java
@@ -0,0 +1,13 @@
+package cc.polyfrost.oneconfig.utils.holder;
+
+public abstract class Holder<T> {
+ protected T holder;
+ public Holder(T holder) {
+ this.holder = holder;
+ }
+
+
+ public abstract T getHolder() throws UnsupportedOperationException;
+
+ public abstract void setHolder() throws UnsupportedOperationException;
+}