source: Dev/branches/rest-dojo-ui/server/rdfapi/resModel/ResBag.php @ 256

Last change on this file since 256 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: 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.