OSDN Git Service

Spiという名前をすべてServiceに変更した.
[stigmata/stigmata.git] / src / main / java / jp / sourceforge / stigmata / birthmarks / comparators / AbstractBirthmarkComparatorService.java
diff --git a/src/main/java/jp/sourceforge/stigmata/birthmarks/comparators/AbstractBirthmarkComparatorService.java b/src/main/java/jp/sourceforge/stigmata/birthmarks/comparators/AbstractBirthmarkComparatorService.java
deleted file mode 100644 (file)
index 8f95511..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-package jp.sourceforge.stigmata.birthmarks.comparators;
-
-import java.lang.reflect.Constructor;
-import java.lang.reflect.InvocationTargetException;
-import java.util.Locale;
-
-import jp.sourceforge.stigmata.BirthmarkComparator;
-import jp.sourceforge.stigmata.spi.AbstractServiceProvider;
-import jp.sourceforge.stigmata.spi.BirthmarkComparatorSpi;
-import jp.sourceforge.stigmata.spi.BirthmarkService;
-import jp.sourceforge.stigmata.utils.LocalizedDescriptionManager;
-
-/**
- * Abstract service provider interface for comparing birthmarks.
- *
- * @author Haruaki TAMADA
- */
-abstract class AbstractBirthmarkComparatorService extends AbstractServiceProvider implements BirthmarkComparatorSpi{
-    /**
-     * returns a type of the birthmark this service provides.
-     */
-    @Override
-    public abstract String getType();
-
-    /**
-     * returns a localized description of the birthmark this service provides.
-     */
-    @Override
-    public String getDescription(Locale locale){
-        return LocalizedDescriptionManager.getInstance().getDescription(
-            locale, getType(), LocalizedDescriptionManager.ServiceCategory.comparator
-        );
-    }
-
-    /**
-     * returns a localized description of the birthmark in default locale.
-     */
-    @Override
-    public String getDescription(){
-        return getDescription(Locale.getDefault());
-    }
-
-    @Override
-    public abstract String getComparatorClassName();
-
-    /**
-     * returns a extractor for the birthmark of this service.
-     */
-    @Override
-    public BirthmarkComparator getComparator(BirthmarkService service){
-        try{
-            Class<?> c = Class.forName(getComparatorClassName());
-            Class<? extends BirthmarkComparator> clazz = c.asSubclass(BirthmarkComparator.class);
-            Constructor<? extends BirthmarkComparator> constructor = clazz.getConstructor(BirthmarkService.class);
-            return constructor.newInstance(service);
-        } catch(NoSuchMethodException e){
-        } catch(InstantiationException e){
-        } catch(InvocationTargetException e){
-        } catch(ClassNotFoundException e){
-        } catch(IllegalAccessException e){
-        }
-        return null;
-    }
-}
-