38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
OFString *characters;
OFString *CDATA;
OFString *comment;
}
#ifdef OF_HAVE_PROPERTIES
@property (copy) OFString *name;
@property (copy, getter=namespace, setter=setNamespace) OFString *ns;
@property (copy) OFString *defaultNamespace;
@property (readonly, copy) OFArray *attributes;
@property (readonly, copy) OFArray *children;
#endif
/**
* \brief Creates a new XML element with the specified name.
|
|
|
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
OFString *characters;
OFString *CDATA;
OFString *comment;
}
#ifdef OF_HAVE_PROPERTIES
@property (copy) OFString *name;
@property (copy, getter=namespace, setter=setNamespace:) OFString *ns;
@property (copy) OFString *defaultNamespace;
@property (readonly, copy) OFArray *attributes;
@property (readonly, copy) OFArray *children;
#endif
/**
* \brief Creates a new XML element with the specified name.
|