Salome HOME
Modifications done to respect PMD rules. Versioning a document is fixed. Validation...
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / service / SimulationContextService.java
index e82b810d43dc0e059f2ac5f5668fa7b0613f4d4e..866f29ffba3d26d09253585e20478875174cffe9 100644 (file)
@@ -36,7 +36,7 @@ public interface SimulationContextService {
         * @throws InvalidPropertyException
         *             if the given state is invalid
         */
-       public Vector<SimulationContextFacade> getSimulationContextsInState(
+       Vector<SimulationContextFacade> getSimulationContextsInState(
                        ProgressState aState) throws InvalidPropertyException;
 
        /**
@@ -46,7 +46,7 @@ public interface SimulationContextService {
         *            simulation context id.
         * @return found context
         */
-       public SimulationContext selectSimulationContext(long index);
+       SimulationContext selectSimulationContext(long index);
 
        /**
         * Find simulation context by its type and value.
@@ -57,7 +57,7 @@ public interface SimulationContextService {
         *            context value
         * @return found context
         */
-       public SimulationContext selectSimulationContext(
+       SimulationContext selectSimulationContext(
                        SimulationContextType celt, String value);
 
        /**
@@ -67,7 +67,7 @@ public interface SimulationContextService {
         *            example properties
         * @return list of contexts
         */
-       public List<SimulationContext> selectSimulationContextsWhere(
+       List<SimulationContext> selectSimulationContextsWhere(
                        SimulationContext.Properties cprop);
 
        /**
@@ -75,7 +75,7 @@ public interface SimulationContextService {
         * 
         * @return list of context types
         */
-       public List<SimulationContextType> selectAllTypes();
+       List<SimulationContextType> selectAllTypes();
 
        /**
         * Get simulation context types related to given activities.
@@ -84,7 +84,7 @@ public interface SimulationContextService {
         *            the activity
         * @return list of found context types
         */
-       public List<SimulationContextType> selectTypesOf(
+       List<SimulationContextType> selectTypesOf(
                        ProjectSettingsService.Step... step);
 
        /**
@@ -94,7 +94,7 @@ public interface SimulationContextService {
         *            the example
         * @return list of found context types
         */
-       public List<SimulationContextType> selectTypesWhere(
+       List<SimulationContextType> selectTypesWhere(
                        SimulationContextType.Properties sprop);
 
        /**
@@ -104,7 +104,7 @@ public interface SimulationContextService {
         *            name of the context type
         * @return found context type
         */
-       public SimulationContextType selectType(String name);
+       SimulationContextType selectType(String name);
 
        /**
         * Get simulation context type by its id.
@@ -113,7 +113,7 @@ public interface SimulationContextService {
         *            simulation context type id.
         * @return found context type
         */
-       public SimulationContextType selectType(long index);
+       SimulationContextType selectType(long index);
 
        /**
         * Hold the simulation context.
@@ -121,7 +121,7 @@ public interface SimulationContextService {
         * @param simCtx
         *            the context to hold.
         */
-       public void hold(SimulationContext simCtx);
+       void hold(SimulationContext simCtx);
 
        /**
         * Release the simulation context.
@@ -129,7 +129,7 @@ public interface SimulationContextService {
         * @param simCtx
         *            the context to release
         */
-       public void release(SimulationContext simCtx);
+       void release(SimulationContext simCtx);
 
        /**
         * Get the simulation context list for displaying drop-down list values populating on the "Create new study" screen.
@@ -142,6 +142,6 @@ public interface SimulationContextService {
         * @param simCtxType
         * @return
         */
-       public ProjectSettingsService.Step getAttachedStep(
+       ProjectSettingsService.Step getAttachedStep(
                        SimulationContextType simCtxType);
 }