Safe Haskell | None |
---|---|
Language | Haskell98 |
Documentation
nodeInsertBefore :: (NodeClass self, NodeClass newChild, NodeClass refChild) => self -> Maybe newChild -> Maybe refChild -> IO (Maybe Node) Source
nodeReplaceChild :: (NodeClass self, NodeClass newChild, NodeClass oldChild) => self -> Maybe newChild -> Maybe oldChild -> IO (Maybe Node) Source
nodeRemoveChild :: (NodeClass self, NodeClass oldChild) => self -> Maybe oldChild -> IO (Maybe Node) Source
nodeAppendChild :: (NodeClass self, NodeClass newChild) => self -> Maybe newChild -> IO (Maybe Node) Source
nodeHasChildNodes :: NodeClass self => self -> IO Bool Source
nodeNormalize :: NodeClass self => self -> IO () Source
nodeIsSupported :: (NodeClass self, GlibString string) => self -> string -> string -> IO Bool Source
nodeLookupPrefix :: (NodeClass self, GlibString string) => self -> string -> IO string Source
nodeIsDefaultNamespace :: (NodeClass self, GlibString string) => self -> string -> IO Bool Source
nodeLookupNamespaceURI :: (NodeClass self, GlibString string) => self -> string -> IO string Source
nodeCompareDocumentPosition :: (NodeClass self, NodeClass other) => self -> Maybe other -> IO Word Source
nodeDispatchEvent :: (NodeClass self, EventClass event) => self -> Maybe event -> IO Bool Source
nodeGetNodeName :: (NodeClass self, GlibString string) => self -> IO string Source
nodeSetNodeValue :: (NodeClass self, GlibString string) => self -> string -> IO () Source
nodeGetNodeValue :: (NodeClass self, GlibString string) => self -> IO string Source
nodeGetNodeType :: NodeClass self => self -> IO Word Source
nodeGetNamespaceURI :: (NodeClass self, GlibString string) => self -> IO string Source
nodeSetPrefix :: (NodeClass self, GlibString string) => self -> string -> IO () Source
nodeGetPrefix :: (NodeClass self, GlibString string) => self -> IO string Source
nodeGetLocalName :: (NodeClass self, GlibString string) => self -> IO string Source
nodeGetBaseURI :: (NodeClass self, GlibString string) => self -> IO string Source
nodeSetTextContent :: (NodeClass self, GlibString string) => self -> string -> IO () Source
nodeGetTextContent :: (NodeClass self, GlibString string) => self -> IO string Source
class GObjectClass o => NodeClass o Source
castToNode :: GObjectClass obj => obj -> Node Source