diff options
| author | EVE <EVE@EVE-PC> | 2017-03-14 12:07:14 -0400 |
|---|---|---|
| committer | EVE <EVE@EVE-PC> | 2017-03-14 12:07:14 -0400 |
| commit | 504ca816530efdff06bc202e0432ebd354aec304 (patch) | |
| tree | 4836932fb81d1d625470502c78c94d202c9a7420 /BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java | |
| parent | 5c1163df17c46f7d3e15b6c7949c38843ec56146 (diff) | |
Cleanup
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 | 10 |
1 files changed, 5 insertions, 5 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 f3aab76..5ef65ee 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java +++ b/BJC-Utils2/src/main/java/bjc/utils/components/IComponentRepository.java @@ -6,7 +6,7 @@ import bjc.utils.funcdata.IMap; /** * A collection of implementations of a particular type of * {@link IDescribedComponent} - * + * * @author ben * * @param <ComponentType> @@ -15,7 +15,7 @@ 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 */ @@ -23,7 +23,7 @@ public interface IComponentRepository<ComponentType extends IDescribedComponent> /** * 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 @@ -33,7 +33,7 @@ public interface IComponentRepository<ComponentType extends IDescribedComponent> /** * Get a list of all the registered componets - * + * * @return A list of all the registered components */ public default IList<ComponentType> getList() { @@ -42,7 +42,7 @@ public interface IComponentRepository<ComponentType extends IDescribedComponent> /** * Get the source from which these components came - * + * * @return The source from which these components came */ public String getSource(); |
