Package org.zkoss.bind.impl
Class ClientBinderCommandParser
- java.lang.Object
-
- org.zkoss.bind.impl.ClientBinderCommandParser
-
- All Implemented Interfaces:
NamespaceParser
public class ClientBinderCommandParser extends java.lang.Object implements NamespaceParser
A client binder command parser for @command and @global-command- Since:
- 8.0.0
- Author:
- jumperchen
-
-
Constructor Summary
Constructors Constructor Description ClientBinderCommandParser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetPriority()Returns the namespace parser's priority, higher is the first.booleanisMatched(java.lang.String nsURI)Checks whether the namespace URI is used for this Namespace Parser.booleanparse(Attribute attr, ComponentInfo compInfo, PageDefinition pgdef)Parses the the content with the current namespace parser.
-
-
-
Method Detail
-
isMatched
public boolean isMatched(java.lang.String nsURI)
Description copied from interface:NamespaceParserChecks whether the namespace URI is used for this Namespace Parser.- Specified by:
isMatchedin interfaceNamespaceParser
-
parse
public boolean parse(Attribute attr, ComponentInfo compInfo, PageDefinition pgdef) throws java.lang.Exception
Description copied from interface:NamespaceParserParses the the content with the current namespace parser.- Specified by:
parsein interfaceNamespaceParser- Returns:
- true to terminal the next namespace parser processing
- Throws:
java.lang.Exception
-
getPriority
public int getPriority()
Description copied from interface:NamespaceParserReturns the namespace parser's priority, higher is the first.- Specified by:
getPriorityin interfaceNamespaceParser
-
-