JAL-1645 source formatting and organise imports
[jalview.git] / src / com / stevesoft / pat / Pthings.java
index 84e327b..8de2748 100755 (executable)
@@ -1,35 +1,47 @@
-//\r
-// This software is now distributed according to\r
-// the Lesser Gnu Public License.  Please see\r
-// http://www.gnu.org/copyleft/lesser.txt for\r
-// the details.\r
-//    -- Happy Computing!\r
-//\r
-package com.stevesoft.pat;\r
-\r
-import java.util.*;\r
-\r
-/**\r
- Things that need to be kept track of during a\r
- match.  Passed along with Pattern.matchInternal. */\r
-public class Pthings\r
-{\r
-  /** The current text we are attempting to match. */\r
-  public StringLike src;\r
-  /** Whether we should ignore the case of letters in\r
-      this match. */\r
-  public boolean ignoreCase;\r
-  public boolean mFlag;\r
-  /** The mask to use when dontMatchInQuotes is set. */\r
-  public BitSet cbits;\r
-  /** Used to keep track of backreferences. */\r
-  //public Hashtable marks;\r
-  public int[] marks;\r
-  public int nMarks;\r
-  /** Used to set the behavior of "."  By default, it\r
-      now fails to match the '\n' character. */\r
-  public boolean dotDoesntMatchCR;\r
-  /** Determine if Skipped strings need to be checked. */\r
-  public boolean no_check;\r
-  int lastPos;\r
-}\r
+//
+// This software is now distributed according to
+// the Lesser Gnu Public License.  Please see
+// http://www.gnu.org/copyleft/lesser.txt for
+// the details.
+//    -- Happy Computing!
+//
+package com.stevesoft.pat;
+
+import java.util.BitSet;
+
+/**
+ * Things that need to be kept track of during a match. Passed along with
+ * Pattern.matchInternal.
+ */
+public class Pthings
+{
+  /** The current text we are attempting to match. */
+  public StringLike src;
+
+  /**
+   * Whether we should ignore the case of letters in this match.
+   */
+  public boolean ignoreCase;
+
+  public boolean mFlag;
+
+  /** The mask to use when dontMatchInQuotes is set. */
+  public BitSet cbits;
+
+  /** Used to keep track of backreferences. */
+  // public Hashtable marks;
+  public int[] marks;
+
+  public int nMarks;
+
+  /**
+   * Used to set the behavior of "." By default, it now fails to match the '\n'
+   * character.
+   */
+  public boolean dotDoesntMatchCR;
+
+  /** Determine if Skipped strings need to be checked. */
+  public boolean no_check;
+
+  int lastPos;
+}