Revision: 7551
          
http://languagetool.svn.sourceforge.net/languagetool/?rev=7551&view=rev
Author:   dnaber
Date:     2012-06-29 10:19:48 +0000 (Fri, 29 Jun 2012)
Log Message:
-----------
fix javadoc and improve method order

Modified Paths:
--------------
    
trunk/JLanguageTool/src/java/org/languagetool/rules/spelling/SpellingCheckRule.java

Modified: 
trunk/JLanguageTool/src/java/org/languagetool/rules/spelling/SpellingCheckRule.java
===================================================================
--- 
trunk/JLanguageTool/src/java/org/languagetool/rules/spelling/SpellingCheckRule.java
 2012-06-29 08:16:58 UTC (rev 7550)
+++ 
trunk/JLanguageTool/src/java/org/languagetool/rules/spelling/SpellingCheckRule.java
 2012-06-29 10:19:48 UTC (rev 7551)
@@ -29,24 +29,21 @@
 /**
  * An abstract rule for spellchecking rules.
  *
- * If you want to have spellchecker which is not based on hunspell,
- * you should simply create a subclass of this class. 
- *
  * @author Marcin MiƂkowski
  */
 public abstract class SpellingCheckRule extends Rule {
 
   protected final Language language;
 
-  @Override
-  public abstract String getId();
-
   public SpellingCheckRule(final ResourceBundle messages, final Language 
language) {
     super(messages);
     this.language = language;
   }
 
   @Override
+  public abstract String getId();
+
+  @Override
   public abstract String getDescription();
 
   @Override

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