1 /* 2 * Measurable.java 3 * 4 * Created on November 8, 2004, 3:17 PM 5 */ 6 7 package com.buchuki.ensmer.input.event; 8 9 /** 10 * Indicator for an event that has some single measurable magnitude that 11 * may be of use to a calling class. 12 * 13 * @author Dusty Phillips 14 */ 15 public interface Measurable { 16 17 /** 18 * Obtain the current value of the measurable property for this class 19 * 20 * @return the measurable property 21 */ 22 public float getMagnitude(); 23 } 24