| sun.misc.RegexpTarget
RegexpTarget | public interface RegexpTarget (Code) | | A class to define actions to be performed when a regular expression match
occurs.
author: James Gosling |
Method Summary | |
Object | found(String remainder) Gets called when a pattern in a RegexpPool matches. |
found | Object found(String remainder)(Code) | | Gets called when a pattern in a RegexpPool matches.
This method is called by RegexpPool.match() who passes the return
value from found() back to its caller.
Parameters: remainder - the string that matched the * in the pattern. |
|
|