/[classpath]/classpath/gnu/regexp/RE.java
ViewVC logotype

Diff of /classpath/gnu/regexp/RE.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by mark, Sat Sep 25 17:29:13 2004 UTC revision 1.3 by robilad, Thu Feb 3 19:20:05 2005 UTC
# Line 43  import java.util.PropertyResourceBundle; Line 43  import java.util.PropertyResourceBundle;
43  import java.util.ResourceBundle;  import java.util.ResourceBundle;
44  import java.util.Vector;  import java.util.Vector;
45    
 class IntPair implements Serializable {  
   public int first, second;  
 }  
   
 class CharUnit implements Serializable {  
   public char ch;  
   public boolean bk;  
 }  
   
46  /**  /**
47   * RE provides the user interface for compiling and matching regular   * RE provides the user interface for compiling and matching regular
48   * expressions.   * expressions.
# Line 119  class CharUnit implements Serializable { Line 110  class CharUnit implements Serializable {
110   */   */
111    
112  public class RE extends REToken {  public class RE extends REToken {
113    
114      private static final class IntPair implements Serializable {
115        public int first, second;
116      }
117    
118      private static final class CharUnit implements Serializable {
119        public char ch;
120        public boolean bk;
121      }
122    
123    // This String will be returned by getVersion()    // This String will be returned by getVersion()
124    private static final String VERSION = "1.1.5-dev";    private static final String VERSION = "1.1.5-dev";
125    

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26