1
2
3
4
5
6 package org.dbe.studio.tools.ontologyviewer.views;
7
8 import org.dbe.studio.tools.ontologyviewer.metamodels.odm.OdmOntology;
9
10 /***
11 *
12 */
13 public class OntologyTree {
14 OdmOntology root;
15
16 public OntologyTree() {
17 super();
18 }
19
20 public OntologyTree( OntologyTree tree) {
21 super();
22 }
23
24 public OntologyTree( OdmOntology root) {
25 super();
26 this.root = root;
27 }
28
29 public OdmOntology getRoot() {
30 return root;
31 }
32
33 public void setRoot(OdmOntology root) {
34 this.root = root;
35 }
36 }