OSDN Git Service

プラットフォームごとのStigmataのホームディレクトリの場所を返す一連のクラスをリファクタリングした.
[stigmata/stigmata.git] / src / main / java / jp / sourceforge / stigmata / birthmarks / ValueCountable.java
1 package jp.sourceforge.stigmata.birthmarks;
2
3 /*
4  * $Id$
5  */
6
7 /**
8  * This interface represents that the implemented class have name and its count.
9  * 
10  * @author Haruaki Tamada
11  * @version $Revision$ 
12  */
13 public interface ValueCountable{
14     public int getValueCount();
15
16     public String getValueName();
17 }