summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2016-07-28 16:44:36 -0400
committerbculkin2442 <bjculkin@mix.wvu.edu>2016-07-28 16:44:36 -0400
commitdca8e9f586fd595a7995f07788318fb92b8cce79 (patch)
tree4fdf216d4a30c2c663d4a429f79cfa471c8579c4 /BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java
parentb1317e5e62bb044cd8a676cb3fc2da86e9922caf (diff)
Format/Cleanup pass
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java b/BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java
index 2644276..1d322af 100644
--- a/BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java
+++ b/BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java
@@ -14,6 +14,14 @@ import bjc.utils.funcdata.IMap;
*/
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
@@ -33,14 +41,6 @@ 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 the source from which these components came
*
* @return The source from which these components came