OSDN Git Service

必要のないクラスを削除し,クラスの整理を行った.
[stigmata/stigmata.git] / src / main / java / jp / sourceforge / stigmata / spi / BirthmarkSpi.java
diff --git a/src/main/java/jp/sourceforge/stigmata/spi/BirthmarkSpi.java b/src/main/java/jp/sourceforge/stigmata/spi/BirthmarkSpi.java
deleted file mode 100644 (file)
index 1652b4d..0000000
+++ /dev/null
@@ -1,81 +0,0 @@
-package jp.sourceforge.stigmata.spi;
-
-/*
- * $Id$
- */
-
-import java.util.Locale;
-
-import jp.sourceforge.stigmata.Birthmark;
-import jp.sourceforge.stigmata.BirthmarkComparator;
-import jp.sourceforge.stigmata.BirthmarkElement;
-import jp.sourceforge.stigmata.BirthmarkExtractor;
-import jp.sourceforge.stigmata.BirthmarkPreprocessor;
-
-/**
- * Birthmark service provider interface.
- *
- * @author Haruaki TAMADA
- * @version $Revision$ 
- */
-public interface BirthmarkSpi extends ServiceProvider{
-    /**
-     * returns a type of the birthmark this service provides.
-     */
-    public String getType();
-
-    /**
-     * returns a type of the birthmark for display.
-     */
-    public String getDisplayType(Locale locale);
-
-    /**
-     * returns a type of the birthmark for display in default locale.
-     */
-    public String getDisplayType();
-
-    /**
-     * returns a description of the birthmark this service provides.
-     */
-    public String getDefaultDescription();
-
-    /**
-     * returns a localized description of the birthmark this service provides.
-     */
-    @Override
-    public String getDescription(Locale locale);
-
-    /**
-     * returns a localized description of the birthmark in default locale.
-     */
-    @Override
-    public String getDescription();
-
-    public String getExtractorClassName();
-
-    public Birthmark buildBirthmark();
-
-    public BirthmarkElement buildBirthmarkElement(String elementValue);
-
-    public BirthmarkPreprocessor getPreprocessor();
-
-    public String getPreprocessorClassName();
-
-    /**
-     * returns a extractor for the birthmark of this service.
-     */
-    public BirthmarkExtractor getExtractor();
-
-    public String getComparatorClassName();
-
-    /**
-     * returns a comparator for the birthmark of this service.
-     */
-    public BirthmarkComparator getComparator();
-
-    public boolean isExperimental();
-
-    public boolean isUserDefined();
-
-}
-