public interface LoadListener
Load listener interface.
- Since:
- 9
-
Method Summary
Modifier and Type Method Description voidbeginCopyElement()Called when the loader has begun reading a copy element.voidbeginDefineElement()Called when the loader has begun reading a define element.voidbeginIncludeElement()Called when the loader has begun reading an include element.voidbeginInstanceDeclarationElement(Class<?> type)Called when the loader has begun reading an instance declaration element.voidbeginPropertyElement(String name, Class<?> sourceType)Called when the loader has begun reading a property element.voidbeginReferenceElement()Called when the loader has begun reading a reference element.voidbeginRootElement()Called when the loader has begun reading a root element.voidbeginScriptElement()Called when the loader has begun reading a script element.voidbeginUnknownStaticPropertyElement(String name)Called when the loader has begun reading a static property element defined by an unknown type.voidbeginUnknownTypeElement(String name)Called when the loader has begun reading an instance declaration element for an unknown type.voidendElement(Object value)Called when the loader has finished reading an element.voidreadComment(String comment)Called when the loader has read a comment.voidreadEventHandlerAttribute(String name, String value)Called when the loader has read an event handler attribute.voidreadImportProcessingInstruction(String target)Called when the loader has read an import processing instruction.voidreadInternalAttribute(String name, String value)Called when the loader has read an internal attribute.voidreadLanguageProcessingInstruction(String language)Called when the loader has read a language processing instruction.voidreadPropertyAttribute(String name, Class<?> sourceType, String value)Called when the loader has read a property attribute.voidreadUnknownStaticPropertyAttribute(String name, String value)Called when the loader has read an unknown static property attribute.
-
Method Details
-
readImportProcessingInstruction
Called when the loader has read an import processing instruction.- Parameters:
target- the target of the import
-
readLanguageProcessingInstruction
Called when the loader has read a language processing instruction.- Parameters:
language- the language instruction
-
readComment
Called when the loader has read a comment.- Parameters:
comment- the comment
-
beginInstanceDeclarationElement
Called when the loader has begun reading an instance declaration element.- Parameters:
type- the type of the element
-
beginUnknownTypeElement
Called when the loader has begun reading an instance declaration element for an unknown type.- Parameters:
name- the name of the unknown type
-
beginIncludeElement
void beginIncludeElement()Called when the loader has begun reading an include element. -
beginReferenceElement
void beginReferenceElement()Called when the loader has begun reading a reference element. -
beginCopyElement
void beginCopyElement()Called when the loader has begun reading a copy element. -
beginRootElement
void beginRootElement()Called when the loader has begun reading a root element. -
beginPropertyElement
Called when the loader has begun reading a property element.- Parameters:
name- the name of the propertysourceType- the type of the property
-
beginUnknownStaticPropertyElement
Called when the loader has begun reading a static property element defined by an unknown type.- Parameters:
name- the name of the unknown type
-
beginScriptElement
void beginScriptElement()Called when the loader has begun reading a script element. -
beginDefineElement
void beginDefineElement()Called when the loader has begun reading a define element. -
readInternalAttribute
Called when the loader has read an internal attribute.- Parameters:
name- the name of the attributevalue- the value of the attribute
-
readPropertyAttribute
Called when the loader has read a property attribute.- Parameters:
name- the name of the attributesourceType- the type of the attributevalue- the value of the attribute
-
readUnknownStaticPropertyAttribute
Called when the loader has read an unknown static property attribute.- Parameters:
name- the name of the attributevalue- the value of the attribute
-
readEventHandlerAttribute
Called when the loader has read an event handler attribute.- Parameters:
name- the name of the attributevalue- the value of the attribute
-
endElement
Called when the loader has finished reading an element.- Parameters:
value- the value of the element
-