Interface LoadListener
public interface LoadListener
Load listener interface.
- Since:
- 9
-
Method Summary
Modifier and TypeMethodDescriptionvoidCalled when the loader has begun reading a copy element.voidCalled when the loader has begun reading a define element.voidCalled 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.voidCalled when the loader has begun reading a reference element.voidCalled when the loader has begun reading a root element.voidCalled when the loader has begun reading a script element.voidCalled when the loader has begun reading a static property element defined by an unknown type.voidCalled 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.voidCalled 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
-
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
-
readPropertyAttribute
-
readUnknownStaticPropertyAttribute
-
readEventHandlerAttribute
-
endElement
Called when the loader has finished reading an element.- Parameters:
value- the value of the element
-