]> SALOME platform Git repositories - tools/siman.git/blobdiff - Workspace/Siman-Common/src/org/splat/dal/bo/som/ValidationCycleRelation.java
Salome HOME
Fix: document removing is fixed. Unit tests for StudyDAO and StepService.removeDocume...
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / dal / bo / som / ValidationCycleRelation.java
index e3c4f15cbd37eb68d50bcfe57586b341e98499c2..007833d2e25e065dafb215c3f986fdd2ba6224d0 100644 (file)
@@ -21,7 +21,7 @@ public class ValidationCycleRelation extends Relation {
     protected ValidationCycleRelation () {
     }
 //  Internal constructor
-    protected ValidationCycleRelation (Study from, ValidationCycle to) {
+    protected ValidationCycleRelation (final Study from, final ValidationCycle to) {
 //  ------------------------------------------------------------------
       super(from);
       this.refer  = to;
@@ -42,12 +42,14 @@ public class ValidationCycleRelation extends Relation {
       return refer.getDocumentType();
     }
 
-    public ValidationCycle getTo () {
+    @Override
+       public ValidationCycle getTo () {
 //  -------------------------------
       return refer;
     }
 
-    protected void setTo (Persistent to) {
+    @Override
+       public void setTo (final Persistent to) {
 //  ------------------------------------
       refer = (ValidationCycle)to;
     }