X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fcore%2Fstructure%2FStructureRegistry.java;h=e9091640840f3197141f91b77c874c04844e4845;hb=7a8f034133c1112e187e2a2bfd2c56a8d2452345;hp=ed0fa592394a15d230947ea9d34742899d84689c;hpb=90b484c35a563691c0923011bb43e2a881db2d5e;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.core/src/main/java/org/argeo/slc/core/structure/StructureRegistry.java b/org.argeo.slc.core/src/main/java/org/argeo/slc/core/structure/StructureRegistry.java index ed0fa5923..e90916408 100644 --- a/org.argeo.slc.core/src/main/java/org/argeo/slc/core/structure/StructureRegistry.java +++ b/org.argeo.slc.core/src/main/java/org/argeo/slc/core/structure/StructureRegistry.java @@ -3,25 +3,25 @@ package org.argeo.slc.core.structure; import java.util.List; /** Registry where the whole structure is stored. */ -public interface StructureRegistry { +public interface StructureRegistry

{ /** Read mode: the structure is only read. */ public static String READ = "READ"; /** All mode: everything is executed regardless of the active paths. */ public static String ALL = "ALL"; /** Active mode: only the active paths are executed. */ - public static String ACTIVE = "STATUS_ACTIVE"; + public static String ACTIVE = "ACTIVE"; /** Adds an element to the registry. */ - public void register(StructurePath path, StructureElement element); + public void register(P path, StructureElement element); /** Lists all registered elements. */ public List listElements(); /** Lists all registered elements. */ - public List listPaths(); + public List

listPaths(); /** Gets a element based on its path. */ - public StructureElement getElement(StructurePath path); + public T getElement(P path); /** * Set the interpreter mode: read, all or active. @@ -45,11 +45,11 @@ public interface StructureRegistry { * Gets the list of active paths, which will be run if executed in * STATUS_ACTIVE mode. */ - public List getActivePaths(); + public List

getActivePaths(); /** * Sets the list of active path, which will be run if executed in * STATUS_ACTIVE mode. */ - public void setActivePaths(List activePaths); + public void setActivePaths(List

activePaths); }