View Javadoc
1   /*
2    * The baseCode project
3    * 
4    * Copyright (c) 2013 University of British Columbia
5    * 
6    * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
7    * the License. You may obtain a copy of the License at
8    * 
9    * http://www.apache.org/licenses/LICENSE-2.0
10   * 
11   * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
12   * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
13   * specific language governing permissions and limitations under the License.
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   * A light-weight version of OntologyTerms. Only supports a subset of the functionality of OntologyTermImpl (namely, it
23   * is missing the inference components)
24   * 
25   * @author Paul
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 }