/**
 * 
 */

/**
 * This interface will provide methods to apply to objects
 * that contain values that can be counted.
 * 
 * @author Nancy Harris
 * @version 1 - 04/22/2013
 *
 */
public interface Sizable {
	
	/**
	 * @return The "count" of the object
	 */
	public int calcSize();
	
	
	/**
	 * @return The string representation of the value
	 */
	public String showValue();

}
