Revision: 7150
          
http://languagetool.svn.sourceforge.net/languagetool/?rev=7150&view=rev
Author:   dnaber
Date:     2012-06-02 00:31:10 +0000 (Sat, 02 Jun 2012)
Log Message:
-----------
tiny cleanup: sort variables

Modified Paths:
--------------
    
trunk/JLanguageTool/src/java/org/languagetool/rules/patterns/AbstractPatternRule.java

Modified: 
trunk/JLanguageTool/src/java/org/languagetool/rules/patterns/AbstractPatternRule.java
===================================================================
--- 
trunk/JLanguageTool/src/java/org/languagetool/rules/patterns/AbstractPatternRule.java
       2012-06-01 22:52:00 UTC (rev 7149)
+++ 
trunk/JLanguageTool/src/java/org/languagetool/rules/patterns/AbstractPatternRule.java
       2012-06-02 00:31:10 UTC (rev 7150)
@@ -38,35 +38,25 @@
  * 
  * @author Marcin MiƂkowski
  */
-
 public abstract class AbstractPatternRule extends Rule {
 
-  private final String id;
-
-  private final String description;
-
+  protected final Language language;
   protected final List<Element> patternElements;
+  protected final boolean testUnification;
+  protected final boolean sentStart;
 
   protected Unifier unifier;
-
-  protected final Language language;
-
+  protected AnalyzedTokenReadings[] unifiedTokens;
   protected int startPositionCorrection;
-
   protected int endPositionCorrection;
-
   protected boolean prevMatched;
 
-  protected final boolean testUnification;
-
+  private final String id;
+  private final String description;
   private final boolean getUnified;
 
   private boolean groupsOrUnification;
 
-  protected AnalyzedTokenReadings[] unifiedTokens;  
-
-  protected final boolean sentStart;
-
   public AbstractPatternRule(final String id, 
       final String description,
       final Language language,
@@ -118,13 +108,11 @@
 
   @Override
   public RuleMatch[] match(AnalyzedSentence text) throws IOException {
-    // TODO Auto-generated method stub
     return null;
   }
 
   @Override
   public void reset() {
-    // TODO Auto-generated method stub
   }
 
   public final void setStartPositionCorrection(final int 
startPositionCorrection) {

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Languagetool-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/languagetool-cvs

Reply via email to