1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
@node Sequences, Alternates, Bags, Container Functions
@chapter Sequence Containers
@itemize @bullet
@item
Function: RdfSeq *rdfCreateSeq(RdfElement *parent, const char *property,
RdfNamespace *ns)
@findex rdfCreateSeq
Creates and returns a new sequence container.
@itemize @minus
@item
parent: The parent which will hold the sequence container.
@item
property: The name of the sequence container's property.
@item
ns: The sequence container's namespace.
@end itemize
@item
Function: RdfElement *rdfSeqAddValue(RdfSeq *seq, const char *property,
RdfNamespace *ns, const char *value, RdfElement *element)
@findex rdfSeqAddValue
Adds and returns a property to the sequence container.
@itemize @minus
@item
seq: The sequence container.
@item
property: The property's name.
@item
ns: The property's namespace.
@item
value: The value of the property, if not NULL.
@item
element: The property's element, if not NULL.
@end itemize
@end itemize
|