OSDN Git Service

Merge branch 'delete_svn_tag' into refactor_branch
[stigmata/stigmata.git] / src / main / java / jp / sourceforge / stigmata / birthmarks / BirthmarkService.java
index b3949c7..8cf5330 100644 (file)
@@ -1,9 +1,5 @@
 package jp.sourceforge.stigmata.birthmarks;
 
-/*
- * $Id$
- */
-
 import java.lang.reflect.Constructor;
 
 import jp.sourceforge.stigmata.BirthmarkComparator;
@@ -16,7 +12,6 @@ import jp.sourceforge.stigmata.spi.BirthmarkSpi;
  * configuration files.
  *
  * @author Haruaki TAMADA
- * @version $Revision$ 
  */
 public class BirthmarkService extends AbstractBirthmarkService implements BirthmarkSpi{
     private Class<? extends BirthmarkExtractor> extractorClass;
@@ -88,6 +83,7 @@ public class BirthmarkService extends AbstractBirthmarkService implements Birthm
         this.displayType = displayType;
     }
 
+    @Override
     public String getDisplayType(){
         return displayType;
     }
@@ -96,6 +92,7 @@ public class BirthmarkService extends AbstractBirthmarkService implements Birthm
         this.description = description;
     }
 
+    @Override
     public String getDescription(){
         String desc = description;
         if(description == null){
@@ -112,6 +109,7 @@ public class BirthmarkService extends AbstractBirthmarkService implements Birthm
         return description;
     }
 
+    @Override
     public String getExtractorClassName(){
         return extractorClass.getName();
     }
@@ -119,6 +117,7 @@ public class BirthmarkService extends AbstractBirthmarkService implements Birthm
     /**
      * returns a extractor for the birthmark of this service.
      */
+    @Override
     public BirthmarkExtractor getExtractor(){
         if(extractorObject == null){
             try{
@@ -131,6 +130,7 @@ public class BirthmarkService extends AbstractBirthmarkService implements Birthm
         return extractorObject;
     }
 
+    @Override
     public String getComparatorClassName(){
         return comparatorClass.getName();
     }
@@ -138,6 +138,7 @@ public class BirthmarkService extends AbstractBirthmarkService implements Birthm
     /**
      * returns a comparator for the birthmark of this service.
      */
+    @Override
     public BirthmarkComparator getComparator(){
         if(comparatorObject == null){
             try{
@@ -150,6 +151,7 @@ public class BirthmarkService extends AbstractBirthmarkService implements Birthm
         return comparatorObject;
     }
 
+    @Override
     public boolean isUserDefined(){
         return userDefined;
     }