com.ibm.net.ssl.internal.www.protocol.https
Interface RegexpTarget


public interface RegexpTarget

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

Author:
James Gosling

Method Summary
 java.lang.Object found(java.lang.String remainder)
          Gets called when a pattern in a RegexpPool matches.
 

Method Detail

found

public java.lang.Object found(java.lang.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.