1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 package ubic.basecode.ontology.model;
16
17 import java.util.Collection;
18
19 import com.hp.hpl.jena.ontology.OntClass;
20
21
22
23
24
25
26
27
28 public class OntologyTermSimple extends OntologyTermImpl {
29
30
31
32
33 private static final long serialVersionUID = -2589717267279872909L;
34
35 private String description = "";
36 private boolean obsolete;
37 private String term;
38 private String uri;
39
40 public OntologyTermSimple( OntClass resource ) {
41 super( resource );
42 throw new UnsupportedOperationException( "Use a OntologyTermImpl" );
43 }
44
45 public OntologyTermSimple( String uri, String term ) {
46 super( null );
47 this.uri = uri;
48 this.term = term;
49 }
50
51 public OntologyTermSimple( String uri, String term, String description, boolean isObsolete ) {
52 this( uri, term );
53 this.description = description;
54 this.obsolete = isObsolete;
55 }
56
57 @Override
58 public boolean equals( Object obj ) {
59 return super.equals( obj );
60 }
61
62 @Override
63 public Collection<String> getAlternativeIds() {
64 throw new UnsupportedOperationException( "Use a OntologyTermImpl" );
65 }
66
67 @Override
68 public Collection<AnnotationProperty> getAnnotations() {
69 throw new UnsupportedOperationException( "Use a OntologyTermImpl" );
70 }
71
72 @Override
73 public Collection<OntologyTerm> getChildren( boolean direct ) {
74 throw new UnsupportedOperationException( "Use a OntologyTermImpl" );
75 }
76
77 @Override
78 public String getComment() {
79 return this.description;
80 }
81
82 @Override
83 public Collection<OntologyIndividual> getIndividuals() {
84 throw new UnsupportedOperationException( "Use a OntologyTermImpl" );
85
86 }
87
88 @Override
89 public Collection<OntologyIndividual> getIndividuals( boolean direct ) {
90 throw new UnsupportedOperationException( "Use a OntologyTermImpl" );
91
92 }
93
94 @Override
95 public String getLabel() {
96 return this.getTerm();
97 }
98
99 @Override
100 public String getLocalName() {
101 return this.getTerm();
102 }
103
104 @Override
105 public Object getModel() {
106 throw new UnsupportedOperationException( "Use a OntologyTermImpl" );
107 }
108
109 @Override
110 public Collection<OntologyTerm> getParents( boolean direct ) {
111 throw new UnsupportedOperationException( "Use a OntologyTermImpl" );
112 }
113
114 @Override
115 public Collection<OntologyRestriction> getRestrictions() {
116 throw new UnsupportedOperationException( "Use a OntologyTermImpl" );
117 }
118
119 @Override
120 public String getTerm() {
121 return this.term;
122 }
123
124 @Override
125 public String getUri() {
126 return this.uri;
127 }
128
129 @Override
130 public int hashCode() {
131 if ( this.getUri() != null ) {
132 return this.getUri().hashCode();
133 }
134 return this.getTerm().hashCode();
135 }
136
137 @Override
138 public boolean isRoot() {
139 throw new UnsupportedOperationException( "Use a OntologyTermImpl" );
140 }
141
142 @Override
143 public boolean isTermObsolete() {
144 return obsolete;
145 }
146
147 }