document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public interface GetDebugApbl_Fieldable  {
  2.     Appendable getDbgApbl();
  3. }
  4. public interface PatternHaser_Fieldable  {
  5.     Pattern getPattern();
  6.     MatcherUses getMatcherUses();
  7. }
  8.     public interface RegexTokenizer_Fieldable extends PatternHaser_Fieldable  {
  9.         String getToTokenize();
  10.         int getLineNumber();
  11.         boolean doReturnSeparators();
  12.         boolean doReturnNonEmptyBetweens();
  13.         boolean doReturnEmptyBetweens();
  14.         Appendable getDebugAppenderOnIfNNull();
  15.     }
  16.     public interface RegexReplacer_Fieldable extends GetDebugApbl_Fieldable, PatternHaser_Fieldable  {
  17.         ReplacesWhat getEReplacesWhat();
  18.         ValidateValue<Integer> getMatchNumValidator();
  19.         int getMaxUntilLoops();
  20.         boolean doCrashIfMaxUntilExceeded();
  21.         Object getDirectReplacement();
  22.     }
  23. public interface VzblPadChop_Fieldable extends GetDebugApbl_Fieldable  {
  24.     boolean doTrimLeft();
  25.     boolean doTrimRight();
  26.     EscapeAction getEscapeAction();
  27.     boolean doPad();
  28.     boolean doChop();
  29.     PadString getPad();
  30.     ChopString getChop();
  31.     boolean doPadFirst();
  32. }
  33. public interface PadChopBase_Fieldable  {
  34.     int getGoalLength();
  35.     boolean isSideRight();
  36. }
  37.     public interface ChopString_Fieldable extends PadChopBase_Fieldable, GetDebugApbl_Fieldable  {
  38.         int    getCharsBeforeDDD()  ;
  39.         int    getOverhangCount();
  40.         String getEllipsis()     ;
  41.     }
  42. public interface FilterValidCounts_Fieldable extends GetDebugApbl_Fieldable  {
  43.     FilterCountType getFilterCountType();
  44.     LengthInRange getLengthInRange();
  45.     FilterPostValue getBelowRangeValue();
  46.     FilterPostValue getInRangeValue();
  47.     FilterPreAction getAboveRangePreAction();
  48. }
');