source: Dev/trunk/rdfapi/resModel/ResBag.php @ 12

Last change on this file since 12 was 12, checked in by basvannuland, 14 years ago

Added RAP RDF API
Added RDF reader writer for save and load survey

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.