1 50 package org.apache.excalibur.instrument; 51 52 65 public interface Instrumentable 66 { 67 70 Instrument[] EMPTY_INSTRUMENT_ARRAY = new Instrument[]{}; 71 72 76 Instrumentable[] EMPTY_INSTRUMENTABLE_ARRAY = new Instrumentable[]{}; 77 78 91 void setInstrumentableName( String name ); 92 93 98 String getInstrumentableName(); 99 100 111 Instrument[] getInstruments(); 112 113 122 Instrumentable[] getChildInstrumentables(); 123 } 124 125 | Popular Tags |