source: Dev/branches/rest-dojo-ui/server/rdfapi/model/Node.php @ 303

Last change on this file since 303 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 663 bytes
Line 
1<?php
2require_once RDFAPI_INCLUDE_DIR . '/util/Object.php';
3
4// ----------------------------------------------------------------------------------
5// Class: Node
6// ----------------------------------------------------------------------------------
7
8/**
9 * An abstract RDF node.
10 * Can either be resource, literal or blank node.
11 * Node is used in some comparisons like is_a($obj, "Node"),
12 * meaning is $obj a resource, blank node or literal.
13 *
14 *
15 * @version $Id: Node.php 348 2007-03-12 10:04:10Z cweiske $
16 * @author Chris Bizer <chris@bizer.de>
17 * @package model
18 * @abstract
19 *
20 */
21 class Node extends Object {
22 } // end:RDFNode
23
24
25?>
Note: See TracBrowser for help on using the repository browser.