Package org.zkoss.zk.ui.metainfo
Interface NamespaceParser
-
public interface NamespaceParserA namespace parser to handle the different namespace for the attributes- Since:
- 7.0.3
- Author:
- jumperchen
-
-
Method Summary
All Methods Instance Methods Abstract 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(org.zkoss.idom.Attribute attr, ComponentInfo compInfo, PageDefinition pgdef)Parses the the content with the current namespace parser.
-
-
-
Method Detail
-
isMatched
boolean isMatched(java.lang.String nsURI)
Checks whether the namespace URI is used for this Namespace Parser.
-
parse
boolean parse(org.zkoss.idom.Attribute attr, ComponentInfo compInfo, PageDefinition pgdef) throws java.lang.ExceptionParses the the content with the current namespace parser.- Returns:
- true to terminal the next namespace parser processing
- Throws:
java.lang.Exception
-
getPriority
int getPriority()
Returns the namespace parser's priority, higher is the first.
-
-