diff options
Diffstat (limited to 'src/uk/ac/ox/cs/pagoda/query/rollup/VariableIndividual.java')
| -rw-r--r-- | src/uk/ac/ox/cs/pagoda/query/rollup/VariableIndividual.java | 416 |
1 files changed, 416 insertions, 0 deletions
diff --git a/src/uk/ac/ox/cs/pagoda/query/rollup/VariableIndividual.java b/src/uk/ac/ox/cs/pagoda/query/rollup/VariableIndividual.java new file mode 100644 index 0000000..53288e5 --- /dev/null +++ b/src/uk/ac/ox/cs/pagoda/query/rollup/VariableIndividual.java | |||
| @@ -0,0 +1,416 @@ | |||
| 1 | package uk.ac.ox.cs.pagoda.query.rollup; | ||
| 2 | |||
| 3 | import java.util.Map; | ||
| 4 | import java.util.Set; | ||
| 5 | |||
| 6 | import org.semanticweb.HermiT.model.Variable; | ||
| 7 | import org.semanticweb.owlapi.model.EntityType; | ||
| 8 | import org.semanticweb.owlapi.model.IRI; | ||
| 9 | import org.semanticweb.owlapi.model.OWLAnnotation; | ||
| 10 | import org.semanticweb.owlapi.model.OWLAnnotationAssertionAxiom; | ||
| 11 | import org.semanticweb.owlapi.model.OWLAnnotationProperty; | ||
| 12 | import org.semanticweb.owlapi.model.OWLAnonymousIndividual; | ||
| 13 | import org.semanticweb.owlapi.model.OWLAxiom; | ||
| 14 | import org.semanticweb.owlapi.model.OWLClass; | ||
| 15 | import org.semanticweb.owlapi.model.OWLClassExpression; | ||
| 16 | import org.semanticweb.owlapi.model.OWLDataProperty; | ||
| 17 | import org.semanticweb.owlapi.model.OWLDataPropertyExpression; | ||
| 18 | import org.semanticweb.owlapi.model.OWLDatatype; | ||
| 19 | import org.semanticweb.owlapi.model.OWLEntity; | ||
| 20 | import org.semanticweb.owlapi.model.OWLEntityVisitor; | ||
| 21 | import org.semanticweb.owlapi.model.OWLEntityVisitorEx; | ||
| 22 | import org.semanticweb.owlapi.model.OWLIndividual; | ||
| 23 | import org.semanticweb.owlapi.model.OWLIndividualVisitor; | ||
| 24 | import org.semanticweb.owlapi.model.OWLIndividualVisitorEx; | ||
| 25 | import org.semanticweb.owlapi.model.OWLLiteral; | ||
| 26 | import org.semanticweb.owlapi.model.OWLNamedIndividual; | ||
| 27 | import org.semanticweb.owlapi.model.OWLNamedObjectVisitor; | ||
| 28 | import org.semanticweb.owlapi.model.OWLObject; | ||
| 29 | import org.semanticweb.owlapi.model.OWLObjectProperty; | ||
| 30 | import org.semanticweb.owlapi.model.OWLObjectPropertyExpression; | ||
| 31 | import org.semanticweb.owlapi.model.OWLObjectVisitor; | ||
| 32 | import org.semanticweb.owlapi.model.OWLObjectVisitorEx; | ||
| 33 | import org.semanticweb.owlapi.model.OWLOntology; | ||
| 34 | |||
| 35 | class VariableIndividual implements OWLNamedIndividual { | ||
| 36 | |||
| 37 | /** | ||
| 38 | * | ||
| 39 | */ | ||
| 40 | private static final long serialVersionUID = 3002966246639516395L; | ||
| 41 | Variable var; | ||
| 42 | |||
| 43 | public VariableIndividual(Variable v) { | ||
| 44 | var = v; | ||
| 45 | } | ||
| 46 | |||
| 47 | @Override | ||
| 48 | public boolean isNamed() { | ||
| 49 | // TODO Auto-generated method stub | ||
| 50 | return false; | ||
| 51 | } | ||
| 52 | |||
| 53 | @Override | ||
| 54 | public boolean isAnonymous() { | ||
| 55 | // TODO Auto-generated method stub | ||
| 56 | return false; | ||
| 57 | } | ||
| 58 | |||
| 59 | @Override | ||
| 60 | public OWLNamedIndividual asOWLNamedIndividual() { | ||
| 61 | // TODO Auto-generated method stub | ||
| 62 | return null; | ||
| 63 | } | ||
| 64 | |||
| 65 | @Override | ||
| 66 | public OWLAnonymousIndividual asOWLAnonymousIndividual() { | ||
| 67 | // TODO Auto-generated method stub | ||
| 68 | return null; | ||
| 69 | } | ||
| 70 | |||
| 71 | @Override | ||
| 72 | public Set<OWLClassExpression> getTypes(OWLOntology ontology) { | ||
| 73 | // TODO Auto-generated method stub | ||
| 74 | return null; | ||
| 75 | } | ||
| 76 | |||
| 77 | @Override | ||
| 78 | public Set<OWLClassExpression> getTypes(Set<OWLOntology> ontologies) { | ||
| 79 | // TODO Auto-generated method stub | ||
| 80 | return null; | ||
| 81 | } | ||
| 82 | |||
| 83 | @Override | ||
| 84 | public Map<OWLObjectPropertyExpression, Set<OWLIndividual>> getObjectPropertyValues( | ||
| 85 | OWLOntology ontology) { | ||
| 86 | // TODO Auto-generated method stub | ||
| 87 | return null; | ||
| 88 | } | ||
| 89 | |||
| 90 | @Override | ||
| 91 | public Set<OWLIndividual> getObjectPropertyValues( | ||
| 92 | OWLObjectPropertyExpression property, OWLOntology ontology) { | ||
| 93 | // TODO Auto-generated method stub | ||
| 94 | return null; | ||
| 95 | } | ||
| 96 | |||
| 97 | @Override | ||
| 98 | public boolean hasObjectPropertyValue(OWLObjectPropertyExpression property, | ||
| 99 | OWLIndividual individual, OWLOntology ontology) { | ||
| 100 | // TODO Auto-generated method stub | ||
| 101 | return false; | ||
| 102 | } | ||
| 103 | |||
| 104 | @Override | ||
| 105 | public boolean hasDataPropertyValue(OWLDataPropertyExpression property, | ||
| 106 | OWLLiteral value, OWLOntology ontology) { | ||
| 107 | // TODO Auto-generated method stub | ||
| 108 | return false; | ||
| 109 | } | ||
| 110 | |||
| 111 | @Override | ||
| 112 | public boolean hasNegativeObjectPropertyValue( | ||
| 113 | OWLObjectPropertyExpression property, OWLIndividual individual, | ||
| 114 | OWLOntology ontology) { | ||
| 115 | // TODO Auto-generated method stub | ||
| 116 | return false; | ||
| 117 | } | ||
| 118 | |||
| 119 | @Override | ||
| 120 | public Map<OWLObjectPropertyExpression, Set<OWLIndividual>> getNegativeObjectPropertyValues( | ||
| 121 | OWLOntology ontology) { | ||
| 122 | // TODO Auto-generated method stub | ||
| 123 | return null; | ||
| 124 | } | ||
| 125 | |||
| 126 | @Override | ||
| 127 | public Map<OWLDataPropertyExpression, Set<OWLLiteral>> getDataPropertyValues( | ||
| 128 | OWLOntology ontology) { | ||
| 129 | // TODO Auto-generated method stub | ||
| 130 | return null; | ||
| 131 | } | ||
| 132 | |||
| 133 | @Override | ||
| 134 | public Set<OWLLiteral> getDataPropertyValues( | ||
| 135 | OWLDataPropertyExpression property, OWLOntology ontology) { | ||
| 136 | // TODO Auto-generated method stub | ||
| 137 | return null; | ||
| 138 | } | ||
| 139 | |||
| 140 | @Override | ||
| 141 | public Map<OWLDataPropertyExpression, Set<OWLLiteral>> getNegativeDataPropertyValues( | ||
| 142 | OWLOntology ontology) { | ||
| 143 | // TODO Auto-generated method stub | ||
| 144 | return null; | ||
| 145 | } | ||
| 146 | |||
| 147 | @Override | ||
| 148 | public boolean hasNegativeDataPropertyValue( | ||
| 149 | OWLDataPropertyExpression property, OWLLiteral literal, | ||
| 150 | OWLOntology ontology) { | ||
| 151 | // TODO Auto-generated method stub | ||
| 152 | return false; | ||
| 153 | } | ||
| 154 | |||
| 155 | @Override | ||
| 156 | public Set<OWLIndividual> getSameIndividuals(OWLOntology ontology) { | ||
| 157 | // TODO Auto-generated method stub | ||
| 158 | return null; | ||
| 159 | } | ||
| 160 | |||
| 161 | @Override | ||
| 162 | public Set<OWLIndividual> getDifferentIndividuals(OWLOntology ontology) { | ||
| 163 | // TODO Auto-generated method stub | ||
| 164 | return null; | ||
| 165 | } | ||
| 166 | |||
| 167 | @Override | ||
| 168 | public String toStringID() { | ||
| 169 | // TODO Auto-generated method stub | ||
| 170 | return null; | ||
| 171 | } | ||
| 172 | |||
| 173 | @Override | ||
| 174 | public void accept(OWLIndividualVisitor visitor) { | ||
| 175 | // TODO Auto-generated method stub | ||
| 176 | |||
| 177 | } | ||
| 178 | |||
| 179 | @Override | ||
| 180 | public <O> O accept(OWLIndividualVisitorEx<O> visitor) { | ||
| 181 | // TODO Auto-generated method stub | ||
| 182 | return null; | ||
| 183 | } | ||
| 184 | |||
| 185 | @Override | ||
| 186 | public Set<OWLEntity> getSignature() { | ||
| 187 | // TODO Auto-generated method stub | ||
| 188 | return null; | ||
| 189 | } | ||
| 190 | |||
| 191 | @Override | ||
| 192 | public Set<OWLAnonymousIndividual> getAnonymousIndividuals() { | ||
| 193 | // TODO Auto-generated method stub | ||
| 194 | return null; | ||
| 195 | } | ||
| 196 | |||
| 197 | @Override | ||
| 198 | public Set<OWLClass> getClassesInSignature() { | ||
| 199 | // TODO Auto-generated method stub | ||
| 200 | return null; | ||
| 201 | } | ||
| 202 | |||
| 203 | @Override | ||
| 204 | public Set<OWLDataProperty> getDataPropertiesInSignature() { | ||
| 205 | // TODO Auto-generated method stub | ||
| 206 | return null; | ||
| 207 | } | ||
| 208 | |||
| 209 | @Override | ||
| 210 | public Set<OWLObjectProperty> getObjectPropertiesInSignature() { | ||
| 211 | // TODO Auto-generated method stub | ||
| 212 | return null; | ||
| 213 | } | ||
| 214 | |||
| 215 | @Override | ||
| 216 | public Set<OWLNamedIndividual> getIndividualsInSignature() { | ||
| 217 | // TODO Auto-generated method stub | ||
| 218 | return null; | ||
| 219 | } | ||
| 220 | |||
| 221 | @Override | ||
| 222 | public Set<OWLDatatype> getDatatypesInSignature() { | ||
| 223 | // TODO Auto-generated method stub | ||
| 224 | return null; | ||
| 225 | } | ||
| 226 | |||
| 227 | @Override | ||
| 228 | public Set<OWLClassExpression> getNestedClassExpressions() { | ||
| 229 | // TODO Auto-generated method stub | ||
| 230 | return null; | ||
| 231 | } | ||
| 232 | |||
| 233 | @Override | ||
| 234 | public void accept(OWLObjectVisitor visitor) { | ||
| 235 | // TODO Auto-generated method stub | ||
| 236 | |||
| 237 | } | ||
| 238 | |||
| 239 | @Override | ||
| 240 | public <O> O accept(OWLObjectVisitorEx<O> visitor) { | ||
| 241 | // TODO Auto-generated method stub | ||
| 242 | return null; | ||
| 243 | } | ||
| 244 | |||
| 245 | @Override | ||
| 246 | public boolean isTopEntity() { | ||
| 247 | // TODO Auto-generated method stub | ||
| 248 | return false; | ||
| 249 | } | ||
| 250 | |||
| 251 | @Override | ||
| 252 | public boolean isBottomEntity() { | ||
| 253 | // TODO Auto-generated method stub | ||
| 254 | return false; | ||
| 255 | } | ||
| 256 | |||
| 257 | @Override | ||
| 258 | public int compareTo(OWLObject arg0) { | ||
| 259 | // TODO Auto-generated method stub | ||
| 260 | return 0; | ||
| 261 | } | ||
| 262 | |||
| 263 | @Override | ||
| 264 | public boolean containsEntityInSignature(OWLEntity owlEntity) { | ||
| 265 | // TODO Auto-generated method stub | ||
| 266 | return false; | ||
| 267 | } | ||
| 268 | |||
| 269 | @Override | ||
| 270 | public EntityType<?> getEntityType() { | ||
| 271 | // TODO Auto-generated method stub | ||
| 272 | return null; | ||
| 273 | } | ||
| 274 | |||
| 275 | @Override | ||
| 276 | public <E extends OWLEntity> E getOWLEntity(EntityType<E> entityType) { | ||
| 277 | // TODO Auto-generated method stub | ||
| 278 | return null; | ||
| 279 | } | ||
| 280 | |||
| 281 | @Override | ||
| 282 | public boolean isType(EntityType<?> entityType) { | ||
| 283 | // TODO Auto-generated method stub | ||
| 284 | return false; | ||
| 285 | } | ||
| 286 | |||
| 287 | @Override | ||
| 288 | public Set<OWLAnnotation> getAnnotations(OWLOntology ontology) { | ||
| 289 | // TODO Auto-generated method stub | ||
| 290 | return null; | ||
| 291 | } | ||
| 292 | |||
| 293 | @Override | ||
| 294 | public Set<OWLAnnotation> getAnnotations(OWLOntology ontology, | ||
| 295 | OWLAnnotationProperty annotationProperty) { | ||
| 296 | // TODO Auto-generated method stub | ||
| 297 | return null; | ||
| 298 | } | ||
| 299 | |||
| 300 | @Override | ||
| 301 | public Set<OWLAnnotationAssertionAxiom> getAnnotationAssertionAxioms( | ||
| 302 | OWLOntology ontology) { | ||
| 303 | // TODO Auto-generated method stub | ||
| 304 | return null; | ||
| 305 | } | ||
| 306 | |||
| 307 | @Override | ||
| 308 | public boolean isBuiltIn() { | ||
| 309 | // TODO Auto-generated method stub | ||
| 310 | return false; | ||
| 311 | } | ||
| 312 | |||
| 313 | @Override | ||
| 314 | public boolean isOWLClass() { | ||
| 315 | // TODO Auto-generated method stub | ||
| 316 | return false; | ||
| 317 | } | ||
| 318 | |||
| 319 | @Override | ||
| 320 | public OWLClass asOWLClass() { | ||
| 321 | // TODO Auto-generated method stub | ||
| 322 | return null; | ||
| 323 | } | ||
| 324 | |||
| 325 | @Override | ||
| 326 | public boolean isOWLObjectProperty() { | ||
| 327 | // TODO Auto-generated method stub | ||
| 328 | return false; | ||
| 329 | } | ||
| 330 | |||
| 331 | @Override | ||
| 332 | public OWLObjectProperty asOWLObjectProperty() { | ||
| 333 | // TODO Auto-generated method stub | ||
| 334 | return null; | ||
| 335 | } | ||
| 336 | |||
| 337 | @Override | ||
| 338 | public boolean isOWLDataProperty() { | ||
| 339 | // TODO Auto-generated method stub | ||
| 340 | return false; | ||
| 341 | } | ||
| 342 | |||
| 343 | @Override | ||
| 344 | public OWLDataProperty asOWLDataProperty() { | ||
| 345 | // TODO Auto-generated method stub | ||
| 346 | return null; | ||
| 347 | } | ||
| 348 | |||
| 349 | @Override | ||
| 350 | public boolean isOWLNamedIndividual() { | ||
| 351 | // TODO Auto-generated method stub | ||
| 352 | return false; | ||
| 353 | } | ||
| 354 | |||
| 355 | @Override | ||
| 356 | public boolean isOWLDatatype() { | ||
| 357 | // TODO Auto-generated method stub | ||
| 358 | return false; | ||
| 359 | } | ||
| 360 | |||
| 361 | @Override | ||
| 362 | public OWLDatatype asOWLDatatype() { | ||
| 363 | // TODO Auto-generated method stub | ||
| 364 | return null; | ||
| 365 | } | ||
| 366 | |||
| 367 | @Override | ||
| 368 | public boolean isOWLAnnotationProperty() { | ||
| 369 | // TODO Auto-generated method stub | ||
| 370 | return false; | ||
| 371 | } | ||
| 372 | |||
| 373 | @Override | ||
| 374 | public OWLAnnotationProperty asOWLAnnotationProperty() { | ||
| 375 | // TODO Auto-generated method stub | ||
| 376 | return null; | ||
| 377 | } | ||
| 378 | |||
| 379 | @Override | ||
| 380 | public Set<OWLAxiom> getReferencingAxioms(OWLOntology ontology) { | ||
| 381 | // TODO Auto-generated method stub | ||
| 382 | return null; | ||
| 383 | } | ||
| 384 | |||
| 385 | @Override | ||
| 386 | public Set<OWLAxiom> getReferencingAxioms(OWLOntology ontology, | ||
| 387 | boolean includeImports) { | ||
| 388 | // TODO Auto-generated method stub | ||
| 389 | return null; | ||
| 390 | } | ||
| 391 | |||
| 392 | @Override | ||
| 393 | public void accept(OWLEntityVisitor visitor) { | ||
| 394 | // TODO Auto-generated method stub | ||
| 395 | |||
| 396 | } | ||
| 397 | |||
| 398 | @Override | ||
| 399 | public <O> O accept(OWLEntityVisitorEx<O> visitor) { | ||
| 400 | // TODO Auto-generated method stub | ||
| 401 | return null; | ||
| 402 | } | ||
| 403 | |||
| 404 | @Override | ||
| 405 | public IRI getIRI() { | ||
| 406 | // TODO Auto-generated method stub | ||
| 407 | return null; | ||
| 408 | } | ||
| 409 | |||
| 410 | @Override | ||
| 411 | public void accept(OWLNamedObjectVisitor visitor) { | ||
| 412 | // TODO Auto-generated method stub | ||
| 413 | |||
| 414 | } | ||
| 415 | |||
| 416 | } | ||
