From df94066e3af02ff02d5ab4d033a3d603f743234c Mon Sep 17 00:00:00 2001 From: bjculkin Date: Mon, 12 Feb 2018 22:45:04 -0500 Subject: Formatting pass --- .../bjc/utils/components/IComponentRepository.java | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) (limited to 'base/src/main/java/bjc/utils/components/IComponentRepository.java') diff --git a/base/src/main/java/bjc/utils/components/IComponentRepository.java b/base/src/main/java/bjc/utils/components/IComponentRepository.java index 099693f..8ecd446 100644 --- a/base/src/main/java/bjc/utils/components/IComponentRepository.java +++ b/base/src/main/java/bjc/utils/components/IComponentRepository.java @@ -10,15 +10,14 @@ import bjc.utils.funcdata.IMap; * @author ben * * @param - * The type of components contained in this repository. + * The type of components contained in this repository. */ public interface IComponentRepository { /** * 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. + * @return A map from component name to component, containing all of the + * components in the repositories. */ public IMap getAll(); @@ -26,18 +25,17 @@ public interface IComponentRepository * Get a component with a specific name. * * @param name - * The name of the component to retrieve. + * The name of the component to retrieve. * - * @return - * The named component, or null if no component with that name exists. + * @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. + * @return A list of all the registered components. */ public default IList getList() { return getAll().valueList(); @@ -46,8 +44,7 @@ public interface IComponentRepository /** * Get the source from which these components came. * - * @return - * The source from which these components came. + * @return The source from which these components came. */ public String getSource(); } -- cgit v1.2.3