This class defines a handler for key/data elements.
Inheritance Hierarchy
See Also
Developer's Guide
Members
No filters for this type
Properties
Gets the parse precedence that is associated with this instance.
Gets the parse precedence that is associated with this instance.
readonlyabstract
Property Value
The parse precedence for this instance.
Implemented in
InputHandlerBase.precedenceMethods
This method is invoked when no data tag is defined, and the default value should be applied.
This method is invoked when no data tag is defined, and the default value should be applied.
abstract
Parameters
- context: IParseContext
- The current parse context.
Implemented in
InputHandlerBase.applyDefaultThis method is invoked each time a data element with a matching key is processed.
This method is invoked each time a data element with a matching key is processed.
abstract
Parameters
- context: IParseContext
- The current parse context.
- node: Node
- The DOM node representing the data element.
See Also
Developer's Guide
Implemented in
InputHandlerBase.parseDataStatic Methods
Creates an implementation of the interface IInputHandler from the given definition.
Creates an implementation of the interface IInputHandler from the given definition.
The given object must contain exactly the abstract members of the IInputHandler interface. No member may be omitted and no additional members can be added. While additional custom members can later be added directly on the instance, this is discouraged.
static
Parameters
Return Value
- IInputHandler
- An instance of the IInputHandler interface based on the given definition.