OSDN Git Service

Delete Subversion Tags (Revision, Id)
[stigmata/stigmata-core.git] / src / main / java / jp / sourceforge / stigmata / birthmarks / ValueCountable.java
1 package jp.sourceforge.stigmata.birthmarks;
2
3 /**
4  * This interface represents that the implemented class have name and its count.
5  * 
6  * @author Haruaki Tamada
7  */
8 public interface ValueCountable{
9     public int getValueCount();
10
11     public String getValueName();
12 }