wicket.util.parse.metapattern.parsers
Class TagNameParser
java.lang.Object
wicket.util.parse.metapattern.parsers.MetaPatternParser
wicket.util.parse.metapattern.parsers.TagNameParser
public final class TagNameParser
- extends MetaPatternParser
Parses XML tag names and attribute names which may include optional
namespaces like "namespace:name" or "name". Both ":name" and "namespace:" are
not allowed. Both, the namespace and the name have to follow naming rules for
variable names (identifier).
- Author:
- Jonathan Locke, Juergen Donnerstag
|
Constructor Summary |
TagNameParser(java.lang.CharSequence input)
Constructs a tag name parser for a given input character sequence. |
|
Method Summary |
java.lang.String |
getName()
Gets the tag name part (eg 'form' in 'html:form' or 'form') |
java.lang.String |
getNamespace()
Get the namespace part (eg 'html' in 'html:form') converted to all lower
case characters. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
TagNameParser
public TagNameParser(java.lang.CharSequence input)
- Constructs a tag name parser for a given input character sequence.
- Parameters:
input - The input to parse
getNamespace
public java.lang.String getNamespace()
- Get the namespace part (eg 'html' in 'html:form') converted to all lower
case characters.
- Returns:
- the namespace part. Will be null, if optonal namespace was not
found
getName
public java.lang.String getName()
- Gets the tag name part (eg 'form' in 'html:form' or 'form')
- Returns:
- the name part
Copyright © 2004-2007 Wicket developers. All Rights Reserved.