summaryrefslogtreecommitdiff
path: root/base/src/main/java/bjc/utils/components/IComponentRepository.java
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2020-12-14 19:29:37 -0400
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2020-12-14 19:29:37 -0400
commit9351ea3e97bbe2d348aa17067ccc6267dc7c080f (patch)
treedd2269c26161c735d94d8dc83d56e6076c2a155d /base/src/main/java/bjc/utils/components/IComponentRepository.java
parent8933de7f646f0565edf700aa2f2fcab06d639855 (diff)
parent6dcadc360dafdd12142d53327f44579379a4c9dd (diff)
Merge branch 'master' of https://github.com/bculkin2442/bjc-utils2
Diffstat (limited to 'base/src/main/java/bjc/utils/components/IComponentRepository.java')
-rw-r--r--base/src/main/java/bjc/utils/components/IComponentRepository.java49
1 files changed, 0 insertions, 49 deletions
diff --git a/base/src/main/java/bjc/utils/components/IComponentRepository.java b/base/src/main/java/bjc/utils/components/IComponentRepository.java
deleted file mode 100644
index 5ebb1de..0000000
--- a/base/src/main/java/bjc/utils/components/IComponentRepository.java
+++ /dev/null
@@ -1,49 +0,0 @@
-package bjc.utils.components;
-
-import bjc.funcdata.IList;
-import bjc.funcdata.IMap;
-
-/**
- * A collection of implementations of a particular type of
- * {@link IDescribedComponent}.
- *
- * @author ben
- *
- * @param <ComponentType>
- * The type of components contained in this repository.
- */
-public interface IComponentRepository<ComponentType extends IDescribedComponent> {
- /**
- * Get all of the components this repository knows about.
- *
- * @return A map from component name to component, containing all of the
- * components in the repositories.
- */
- public IMap<String, ComponentType> getAll();
-
- /**
- * Get a component with a specific name.
- *
- * @param name
- * The name of the component to retrieve.
- *
- * @return The named component, or null if no component with that name exists.
- */
- public ComponentType getByName(String name);
-
- /**
- * Get a list of all the registered components.
- *
- * @return A list of all the registered components.
- */
- public default IList<ComponentType> getList() {
- return getAll().valueList();
- }
-
- /**
- * Get the source from which these components came.
- *
- * @return The source from which these components came.
- */
- public String getSource();
-}