home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / esc.jar / com / extensibility / util / regexpr / PatternTerm.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-06-30  |  402 b   |  20 lines

  1. package com.extensibility.util.regexpr;
  2.  
  3. import java.util.Enumeration;
  4.  
  5. public interface PatternTerm {
  6.    boolean isSeq();
  7.  
  8.    boolean isChoice();
  9.  
  10.    Enumeration getPatternTerms();
  11.  
  12.    boolean matches(String var1);
  13.  
  14.    boolean intersects(PatternTerm var1);
  15.  
  16.    int getMinOccurrence();
  17.  
  18.    int getMaxOccurrence();
  19. }
  20.