1 8 package org.apache.avalon.excalibur.profile; 9 10 17 public class ValueProfilePoint extends AbstractProfilePoint 18 { 19 private int m_value = 0; 20 21 24 public ValueProfilePoint( String name ) 25 { 26 super( name ); 27 } 28 29 32 public void setValue( int currentValue ) 33 { 34 m_value = currentValue; 35 } 36 37 42 public int getSample() 43 { 44 return m_value; 45 } 46 } 47 | Popular Tags |