1 package org.splat.dal.bo.som;
4 * @author Daniel Brunier-Coulin
5 * @copyright OPEN CASCADE 2012
8 import org.splat.dal.bo.kernel.Persistent;
9 import org.splat.dal.bo.kernel.Relation;
12 public class UsesRelation extends Relation {
14 private Document refer;
16 // ==============================================================================================================================
18 // ==============================================================================================================================
20 // Database fetch constructor
21 protected UsesRelation () {
23 // Initialization constructors
24 public UsesRelation (Document from, Document to) {
25 // ---------------------------------------------------
28 this.reverse = new UsedByRelation(this, to, from);
30 // Internal constructor
31 protected UsesRelation (Relation back, Document from, Document to) {
32 // ------------------------------------------------------------------
38 // ==============================================================================================================================
39 // Public member functions
40 // ==============================================================================================================================
42 public Class<? extends Relation> getReverseClass () {
43 // ---------------------------------------------------
44 return UsedByRelation.class;
47 public Document getTo () {
48 // -------------------------
51 public boolean isBidirectional () {
52 // ---------------------------------
55 protected void setTo (Persistent to) {
56 // ------------------------------------