public interface

RegexpTarget

sun.misc.RegexpTarget

Class Overview

A class to define actions to be performed when a regular expression match occurs.

Summary

Public Methods
abstract Object found(String remainder)
Gets called when a pattern in a RegexpPool matches.

Public Methods

public abstract Object found (String remainder)

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.