Uses of Interface
pobs.PAction

Packages that use PAction
pobs   
pobs.action   
pobs.parser   
 

Uses of PAction in pobs
 

Methods in pobs with parameters of type PAction
 PParser PParser.setMatchAction(PAction matchAction)
          Defines the action used in the case of matching.
 PParser PParser.setMismatchAction(PAction mismatchAction)
          Defines the action used in the case of missmatching.
 

Uses of PAction in pobs.action
 

Classes in pobs.action that implement PAction
 class PAppendString
          Appends the parsed data to a wrapped string.
 class PLog
          Ouputs a specified string to stdout whenever this action is performed.
 class PPrint
          Outputs the parsed data which caused the triggering of this action to stdout.
 class PSetString
          Sets the parsed data to a wrapped string.
 

Uses of PAction in pobs.parser
 

Constructors in pobs.parser with parameters of type PAction
POnMatch(PParser parser, PAction action_match)
          Match-only constructor.
POnMatch(PParser parser, PAction action_match, PAction action_mismatch)
          Match and mismatch constructor.