source: Dev/branches/jQueryUI/server/rdfapi/model/Node.php @ 249

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

This one's for Subversion, because it's so close...

First widget (stripped down sequencer).
Seperated client and server code in two direcotry trees.

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.