Last change
on this file since 169 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
|
Rev | Line | |
---|
[12] | 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 | **/
|
---|
| 16 | class 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.