]> SALOME platform Git repositories - tools/siman.git/blobdiff - Workspace/Siman-Common/src/org/splat/dal/bo/som/ActorRelation.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 / ActorRelation.java
index 98fdf8abd4f9d67516c7ab9ae0db549a000c64ee..8d463946c5d92c09e5ec59165c766af7a7971240 100644 (file)
@@ -31,7 +31,7 @@ public abstract class ActorRelation extends Relation {
     protected ActorRelation () {
     }
 //  ActorRelation subclasses constructor
-    protected ActorRelation (Study from, User to) {
+    protected ActorRelation (final Study from, final User to) {
 //  ---------------------------------------------
       super(from);
       this.refer = to;
@@ -46,7 +46,8 @@ public abstract class ActorRelation extends Relation {
 //  --------------------
       return refer;
     }
-    protected void setTo (Persistent to) {
+    @Override
+       public void setTo (final Persistent to) {
 //  ------------------------------------
       refer = (User)to;
     }