1 19 20 package org.apache.excalibur.instrument.test; 21 22 import org.apache.excalibur.instrument.AbstractInstrumentable; 23 import org.apache.excalibur.instrument.Instrument; 24 import org.apache.excalibur.instrument.Instrumentable; 25 26 32 public class AbstractInstrumentableImpl 33 extends AbstractInstrumentable 34 { 35 38 public AbstractInstrumentableImpl( String name ) 39 { 40 setInstrumentableName( name ); 41 } 42 43 46 53 public void addInstrument( Instrument instrument ) 54 { 55 super.addInstrument( instrument ); 57 } 58 59 69 public void addChildInstrumentable( Instrumentable child ) 70 { 71 super.addChildInstrumentable( child ); 73 } 74 } 75 | Popular Tags |