Salome HOME
2f3f3dd138f9c3c9b3bffca6db5958ce81f25ede
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / som / ContributorRelation.java
1 package org.splat.som;
2 /**
3  * 
4  * @author    Daniel Brunier-Coulin
5  * @copyright OPEN CASCADE 2012
6  */
7
8 import org.splat.kernel.User;
9
10
11 public class ContributorRelation extends ActorRelation {
12
13 //  ==============================================================================================================================
14 //  Constructors
15 //  ==============================================================================================================================
16
17 //  Database fetch constructor
18     protected ContributorRelation () {
19     }
20 //  Initialization constructor
21     protected ContributorRelation (Study from, User to) {
22 //  --------------------------------------------------
23       super(from, to);
24     }
25 }