Source for file RDFS.php

Documentation is available at RDFS.php

  1. <?php
  2. /**
  3. *   RDF Vocabulary Description Language 1.0: RDF Schema (RDFS) Vocabulary
  4. *
  5. *   @version $Id: fsource_vocabulary__vocabularyRDFS.php.html 443 2007-06-01 16:25:38Z cax $
  6. *   @author Daniel Westphal (dawe@gmx.de)
  7. *   @package vocabulary
  8. *
  9. *    Wrapper, defining resources for all terms of the
  10. *    RDF Schema (RDFS).
  11. *    For details about RDFS see: http://www.w3.org/TR/rdf-schema/.
  12. *    Using the wrapper allows you to define all aspects of
  13. *    the vocabulary in one spot, simplifing implementation and
  14. *    maintainence.
  15. */
  16. // RDFS concepts
  17. $RDFS_Resource new Resource(RDF_SCHEMA_URI 'Resource');
  18. $RDFS_Literal new Resource(RDF_SCHEMA_URI 'Literal');
  19. $RDFS_Class new Resource(RDF_SCHEMA_URI 'Class');
  20. $RDFS_Datatype new Resource(RDF_SCHEMA_URI 'Datatype');
  21. $RDFS_Container new Resource(RDF_SCHEMA_URI 'Container');
  22. $RDFS_ContainerMembershipProperty new Resource(RDF_SCHEMA_URI 'ContainerMembershipProperty');
  23. $RDFS_subClassOf new Resource(RDF_SCHEMA_URI 'subClassOf');
  24. $RDFS_subPropertyOf new Resource(RDF_SCHEMA_URI 'subPropertyOf');
  25. $RDFS_domain new Resource(RDF_SCHEMA_URI 'domain');
  26. $RDFS_range new Resource(RDF_SCHEMA_URI 'range');
  27. $RDFS_label new Resource(RDF_SCHEMA_URI 'label');
  28. $RDFS_comment new Resource(RDF_SCHEMA_URI 'comment');
  29. $RDFS_member new Resource(RDF_SCHEMA_URI 'member');
  30. $RDFS_seeAlso new Resource(RDF_SCHEMA_URI 'seeAlso');
  31. $RDFS_isDefinedBy new Resource(RDF_SCHEMA_URI 'isDefinedBy');
  32.  
  33.  
  34. ?>

Documentation generated on Fri, 1 Jun 2007 16:50:45 +0200 by phpDocumentor 1.3.2