RDF
[ class tree: RDF ] [ index: RDF ] [ all elements ]

Source for file OWL.php

Documentation is available at OWL.php

  1. <?php 
  2. // ----------------------------------------------------------------------------------
  3. // OWL Vocabulary
  4. // ----------------------------------------------------------------------------------
  5. // Version                   : 0.4
  6. // Authors                   : Daniel Westphal (dawe@gmx.de)
  7.  
  8. // Description               : Wrapper, defining resources for all concepts of the Web
  9. // Ontology Language (OWL). For details about OWL see:
  10. // http://www.w3.org/TR/owl-ref/
  11. // Using the wrapper allows you to define all aspects of
  12. // the language in one spot, simplifing implementation and
  13. // maintainence. Working with the vocabulary, you should use
  14. // these resources as shortcuts in your code.
  15. // 
  16. // define OWL namespace
  17. define('RDF_OWL_NS''http://www.w3.org/2002/07/owl');
  18.  
  19. // OWL concepts
  20. $OWL_AnnotationProperty =RDF_Resource::factory(RDF_OWL_NS . 'AnnotationProperty');
  21. $OWL_allValuesFrom =RDF_Resource::factory(RDF_OWL_NS . 'allValuesFrom');
  22. $OWL_backwardCompatibleWith RDF_Resource::factory(RDF_OWL_NS . 'backwardCompatibleWith');
  23. $OWL_cardinality =RDF_Resource::factory(RDF_OWL_NS . 'cardinality');
  24. $OWL_Class =RDF_Resource::factory(RDF_OWL_NS . 'Class');
  25. $OWL_complementOf =RDF_Resource::factory(RDF_OWL_NS . 'complementOf');
  26. $OWL_Datatype =RDF_Resource::factory(RDF_OWL_NS . 'Datatype');
  27. $OWL_DatatypeProperty =RDF_Resource::factory(RDF_OWL_NS . 'DatatypeProperty');
  28. $OWL_DataRange =RDF_Resource::factory(RDF_OWL_NS . 'DataRange');    
  29. $OWL_DatatypeRestriction =RDF_Resource::factory(RDF_OWL_NS . 'DatatypeRestriction');
  30. $OWL_DeprecatedClass RDF_Resource::factory(RDF_OWL_NS . 'DeprecatedClass');
  31. $OWL_DeprecatedProperty RDF_Resource::factory(RDF_OWL_NS . 'DeprecatedProperty');
  32. $OWL_differentFrom =RDF_Resource::factory(RDF_OWL_NS . 'differentFrom');
  33. $OWL_disjointWith =RDF_Resource::factory(RDF_OWL_NS . 'disjointWith');
  34. $OWL_sameAs =RDF_Resource::factory(RDF_OWL_NS . 'sameAs');
  35. $OWL_FunctionalProperty =RDF_Resource::factory(RDF_OWL_NS . 'FunctionalProperty');
  36. $OWL_hasValue =RDF_Resource::factory(RDF_OWL_NS . 'hasValue');
  37. $OWL_incompatibleWith RDF_Resource::factory(RDF_OWL_NS . 'incompatibleWith');
  38. $OWL_imports =RDF_Resource::factory(RDF_OWL_NS . 'imports');
  39. $OWL_intersectionOf =RDF_Resource::factory(RDF_OWL_NS . 'intersectionOf');
  40. $OWL_InverseFunctionalProperty =RDF_Resource::factory(RDF_OWL_NS . 'InverseFunctionalProperty');
  41. $OWL_inverseOf =RDF_Resource::factory(RDF_OWL_NS . 'inverseOf');
  42. $OWL_maxCardinality =RDF_Resource::factory(RDF_OWL_NS . 'maxCardinality');
  43. $OWL_minCardinality =RDF_Resource::factory(RDF_OWL_NS . 'minCardinality');
  44. $OWL_ObjectClass =RDF_Resource::factory(RDF_OWL_NS . 'ObjectClass');
  45. $OWL_ObjectProperty =RDF_Resource::factory(RDF_OWL_NS . 'ObjectProperty');
  46. $OWL_ObjectRestriction =RDF_Resource::factory(RDF_OWL_NS . 'ObjectRestriction');
  47. $OWL_oneOf =RDF_Resource::factory(RDF_OWL_NS . 'oneOf');
  48. $OWL_onProperty =RDF_Resource::factory(RDF_OWL_NS . 'onProperty');
  49. $vOWL_Ontology =RDF_Resource::factory(RDF_OWL_NS . 'Ontology');
  50. $OWL_priorVersion RDF_Resource::factory(RDF_OWL_NS . 'priorVersion');   
  51. $OWL_Property =RDF_Resource::factory(RDF_OWL_NS . 'Property');
  52. $vOWL_Restriction =RDF_Resource::factory(RDF_OWL_NS . 'Restriction');
  53. $OWL_sameClassAs =RDF_Resource::factory(RDF_OWL_NS . 'sameClassAs');
  54. $OWL_sameIndividualAs =RDF_Resource::factory(RDF_OWL_NS . 'sameIndividualAs');
  55. $OWL_samePropertyAs =RDF_Resource::factory(RDF_OWL_NS . 'samePropertyAs');
  56. $OWL_someValuesFrom =RDF_Resource::factory(RDF_OWL_NS . 'someValuesFrom');
  57. $OWL_SymmetricProperty =RDF_Resource::factory(RDF_OWL_NS . 'SymmetricProperty');
  58. $OWL_TransitiveProperty =RDF_Resource::factory(RDF_OWL_NS . 'TransitiveProperty');
  59. $OWL_unionOf =RDF_Resource::factory(RDF_OWL_NS . 'unionOf');
  60. $OWL_versionInfo =RDF_Resource::factory(RDF_OWL_NS . 'versionInfo');
  61.  
  62. ?>

Documentation generated on Mon, 11 Mar 2019 15:39:28 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.