Documentation is available at QueryTriple.php
- <?php
- // ---------------------------------------------
- // Class: QueryTriple
- // ---------------------------------------------
- /**
- * Represents a query triple.
- *
- * <BR><BR>History:<UL>
- * <LI>08.09.2005: Initial version</LI>
- *
- * @author Tobias Gauss <tobias.gauss@web.de>
- * @version 0.9.3
- *
- * @package sparql
- */
- Class QueryTriple extends Object{
- /**
- * The QueryTriples Subject.
- */
- private $subject;
- /**
- * The QueryTriples Predicate.
- */
- private $predicate;
- /**
- * The QueryTriples Object.
- */
- private $object;
- /**
- * Constructor
- */
- public function QueryTriple($sub,$pred,$ob){
- $this->subject = $sub;
- $this->predicate = $pred;
- $this->object = $ob;
- }
- /**
- * Returns the Triples Subject.
- *
- * @return Node
- */
- public function getSubject(){
- return $this->subject;
- }
- /**
- * Returns the Triples Predicate.
- *
- * @return Node
- */
- public function getPredicate(){
- return $this->predicate;
- }
- /**
- * Returns the Triples Object.
- *
- * @return Node
- */
- public function getObject(){
- return $this->object;
- }
- }
- // end class: QueryTriple.php
- ?>
Documentation generated on Fri, 13 Jan 2006 07:48:55 +0100 by phpDocumentor 1.3.0RC4