source: Dev/branches/jQueryUI/server/rdfapi/resModel/ResBag.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: 810 bytes
Line 
1<?php
2// ----------------------------------------------------------------------------------
3// Class: ResBag
4// ----------------------------------------------------------------------------------
5
6/**
7* This interface defines methods for accessing RDF Bag resources.
8* These methods operate on the RDF statements contained in a model.
9*
10* @version  $Id: ResBag.php 320 2006-11-21 09:38:51Z tgauss $
11* @author Daniel Westphal <mail at d-westphal dot de>
12*
13* @package      resModel
14* @access       public
15**/
16class ResBag extends ResContainer
17{
18       
19        /**
20    * Constructor
21        * You can supply a URI
22    *
23    * @param string $uri
24        * @access       public
25    */         
26        function ResBag($uri = null)
27        {
28                parent::ResContainer($uri);
29                $this->containerType=new ResResource(RDF_NAMESPACE_URI.RDF_BAG);
30        }
31}
32?>
Note: See TracBrowser for help on using the repository browser.