diff options
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.java | 16 |
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 |
