|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectjavax.swing.JFormattedTextField.AbstractFormatter
javax.swing.text.DefaultFormatter
org.globus.cog.gridface.impl.util.RegexFormatter
A regular expression based implementation of AbstractFormatter.
| Constructor Summary | |
RegexFormatter()
|
|
RegexFormatter(Pattern pattern)
Creates a regular expression based AbstractFormatter. |
|
RegexFormatter(String pattern)
Creates a regular expression based AbstractFormatter. |
|
| Method Summary | |
protected Matcher |
getMatcher()
Returns the Matcher from the most test. |
Pattern |
getPattern()
Returns the Pattern used to determine if a value is
legal. |
protected void |
setMatcher(Matcher matcher)
Sets the Matcher used in the most recent test
if a value is legal. |
void |
setPattern(Pattern pattern)
Sets the pattern that will be used to determine if a value is legal. |
Object |
stringToValue(String text)
Parses text returning an arbitrary Object. |
| Methods inherited from class javax.swing.text.DefaultFormatter |
clone, getAllowsInvalid, getCommitsOnValidEdit, getDocumentFilter, getNavigationFilter, getOverwriteMode, getValueClass, install, setAllowsInvalid, setCommitsOnValidEdit, setOverwriteMode, setValueClass, valueToString |
| Methods inherited from class javax.swing.JFormattedTextField.AbstractFormatter |
getActions, getFormattedTextField, invalidEdit, setEditValid, uninstall |
| Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public RegexFormatter()
public RegexFormatter(String pattern)
throws PatternSyntaxException
AbstractFormatter.
pattern specifies the regular expression that will
be used to determine if a value is legal.
public RegexFormatter(Pattern pattern)
AbstractFormatter.
pattern specifies the regular expression that will
be used to determine if a value is legal.
| Method Detail |
public void setPattern(Pattern pattern)
public Pattern getPattern()
Pattern used to determine if a value is
legal.
protected void setMatcher(Matcher matcher)
Matcher used in the most recent test
if a value is legal.
protected Matcher getMatcher()
Matcher from the most test.
public Object stringToValue(String text)
throws ParseException
text returning an arbitrary Object. Some
formatters may return null.
If a Pattern has been specified and the text
completely matches the regular expression this will invoke
setMatcher.
text - String to convert
ParseException - if there is an error in the conversion
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||