summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/data/lazy/ILazy.java
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2016-04-13 16:54:12 -0400
committerbculkin2442 <bjculkin@mix.wvu.edu>2016-04-13 16:54:12 -0400
commitba07771f8333f1b098ab8a9ec9fec886b72b9cc0 (patch)
tree7d1326235d021cb4767065cddd25bbe9fbdf5ce1 /BJC-Utils2/src/main/java/bjc/utils/data/lazy/ILazy.java
parent12637af8d6b7b9b2d96deb89e5a09e05178a8e65 (diff)
Removed old data types
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/data/lazy/ILazy.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/data/lazy/ILazy.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/data/lazy/ILazy.java b/BJC-Utils2/src/main/java/bjc/utils/data/lazy/ILazy.java
deleted file mode 100644
index a4fab67..0000000
--- a/BJC-Utils2/src/main/java/bjc/utils/data/lazy/ILazy.java
+++ /dev/null
@@ -1,35 +0,0 @@
-package bjc.utils.data.lazy;
-
-/**
- * Interface for some maintenance operations on lazy objects
- *
- * @author ben
- *
- */
-public interface ILazy {
- /**
- * Check if this object has been materialized
- *
- * @return Whether or not this object has been materialized
- */
- public boolean isMaterialized();
-
- /**
- * Check if there are pending actions that need to be applied
- *
- * @return Whether or not there are pending actions
- */
- public boolean hasPendingActions();
-
- /**
- * Make this object materialize itelf
- */
- public void materialize();
-
- /**
- * Make this object apply any pending objects
- *
- * As a requirement, will materialize the object if it is not materialized
- */
- public void applyPendingActions();
-}