Package ch.bailu.gtk.glib
Interface MarkupError
public interface MarkupError
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
text being parsed was not valid UTF-8static final int
document contained nothing, or only whitespacestatic final int
error should be set by #GMarkupParser
functions; content was invalidstatic final int
error should be set by #GMarkupParser
functions; a required attribute was missingstatic final int
document was ill-formedstatic final int
error should be set by #GMarkupParser
functions; attribute wasn't knownstatic final int
error should be set by #GMarkupParser
functions; element wasn't known
-
Field Details
-
BAD_UTF8
static final int BAD_UTF8text being parsed was not valid UTF-8- See Also:
-
EMPTY
static final int EMPTYdocument contained nothing, or only whitespace- See Also:
-
PARSE
static final int PARSEdocument was ill-formed- See Also:
-
UNKNOWN_ELEMENT
static final int UNKNOWN_ELEMENTerror should be set by #GMarkupParser
functions; element wasn't known- See Also:
-
UNKNOWN_ATTRIBUTE
static final int UNKNOWN_ATTRIBUTEerror should be set by #GMarkupParser
functions; attribute wasn't known- See Also:
-
INVALID_CONTENT
static final int INVALID_CONTENTerror should be set by #GMarkupParser
functions; content was invalid- See Also:
-
MISSING_ATTRIBUTE
static final int MISSING_ATTRIBUTEerror should be set by #GMarkupParser
functions; a required attribute was missing- See Also:
-