1 50 package org.apache.excalibur.instrument; 51 52 61 public class ValueInstrument 62 extends AbstractInstrument 63 { 64 67 73 public ValueInstrument( String name ) 74 { 75 super( name ); 76 } 77 78 81 88 public void setValue( int value ) 89 { 90 InstrumentProxy proxy = getInstrumentProxy(); 91 if( proxy != null ) 92 { 93 proxy.setValue( value ); 94 } 95 } 96 } 97 | Popular Tags |