GXmlDocumentFragment

GXmlDocumentFragment — An partial portion of a GXmlxDocument, not necessarily valid XML.

Types and Values

Description

To create one, use gxml_xdocument_create_document_fragment().

This does not need to have a root document element, or being completely valid. It can have multiple children, which, if the DocumentFragment is inserted as a child to another node, become that nodes' children, without the DocumentFragment itself existing as a child.

Version: DOM Level 1 Core

URL: http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-B63ED1A3

Functions

Types and Values

GXML_TYPE_DOCUMENT_FRAGMENT

#define GXML_TYPE_DOCUMENT_FRAGMENT (gxml_document_fragment_get_type ())

The type for GXmlDocumentFragment.


struct GXmlDocumentFragment

struct GXmlDocumentFragment {
	GXmlBackedNode parent_instance;
	GXmlDocumentFragmentPrivate * priv;
};

An partial portion of a GXmlxDocument, not necessarily valid XML.

To create one, use gxml_xdocument_create_document_fragment().

This does not need to have a root document element, or being completely valid. It can have multiple children, which, if the DocumentFragment is inserted as a child to another node, become that nodes' children, without the DocumentFragment itself existing as a child.

Version: DOM Level 1 Core

URL: http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-B63ED1A3


struct GXmlDocumentFragmentClass

struct GXmlDocumentFragmentClass {
	GXmlBackedNodeClass parent_class;
};

The class structure for GXML_TYPE_DOCUMENT_FRAGMENT. All the fields in this structure are private and should never be accessed directly.

Members