Uses of Interface
pobs.PControl

Packages that use PControl
pobs Interfaces and basic classes of the framework.  
pobs.control   
 

Uses of PControl in pobs
 

Methods in pobs with parameters of type PControl
 PParser PParser.addControl(PControl control)
          Adds a control.
 

Uses of PControl in pobs.control
 

Classes in pobs.control that implement PControl
 class PDisableActions
          Disables the actions directive.
 class PDisableCase
          Disables the case sensitive directive.
 class PDisableSkip
          Disables the skip directive.
 class PEnableActions
          Enables the actions directive.
 class PEnableCase
          Enables the case-sensitive directive.
 class PEnableSkip
          Enables the skip directive.
 class PFirstAlternative
          Sets the alternatives directive to first mode, this will return the first alternative in encountered in parsers like POr and PTokens.
 class PLongestAlternative
          Sets the alternatives directive to longest mode, this will return the longest of all matching alternatives in encountered in parsers like POr and PTokens.
 class PShortestAlternative
          Sets the alternatives directive to shortest mode, this will return the shortest of all matching alternatives in encountered in parsers like POr and PTokens.
 

Fields in pobs.control declared as PControl
static PControl PC.DISABLE_ACTIONS
          Instance of PDisableActions.
static PControl PC.ENABLE_ACTIONS
          Instance of PEnableActions.
static PControl PC.DISABLE_CASE
          Instance of PDisableCase.
static PControl PC.ENABLE_CASE
          Instance of PEnableCase.
static PControl PC.DISABLE_SKIP
          Instance of PDisableSkip.
static PControl PC.ENABLE_SKIP
          Instance of PEnableSkip.
static PControl PC.FIRST_ALTERNATIVE
          Instance of PFirstAlternative.
static PControl PC.SHORTEST_ALTERNATIVE
          Instance of PShortestAlternative.
static PControl PC.LONGEST_ALTERNATIVE
          Instance of PLongestAlternative.