Marcus,
Ok, I got them implemented. Take a look at the
InstrumentManagerClient interface
for the new methods. You can also access the DefaultInstrumentManager
directly
depending how which you have access to.
Cheers,
Leif
/**
* Searches the entire instrument tree an instrumentable with the given
* name.
*
* @param instrumentableName Name of the Instrumentable being requested.
*
* @return A Descriptor of the requested Instrumentable.
*
* @throws NoSuchInstrumentableException If the specified
Instrumentable does
* not exist.
*/
public InstrumentableDescriptor locateInstrumentableDescriptor(
String instrumentableName )
throws NoSuchInstrumentableException
/**
* Searches the entire instrument tree an instrument with the given
name.
*
* @param instrumentName Name of the Instrument being requested.
*
* @return A Descriptor of the requested Instrument.
*
* @throws NoSuchInstrumentException If the specified Instrument does
* not exist.
*/
public InstrumentDescriptor locateInstrumentDescriptor( String
instrumentName )
throws NoSuchInstrumentException
/**
* Searches the entire instrument tree an instrument sample with the
given
* name.
*
* @param sampleName Name of the Instrument Sample being requested.
*
* @return A Descriptor of the requested Instrument Sample.
*
* @throws NoSuchInstrumentSampleException If the specified Instrument
* Sample does not exist.
*/
public InstrumentSampleDescriptor locateInstrumentSampleDescriptor(
String sampleName )
throws NoSuchInstrumentSampleException
--
To unsubscribe, e-mail: <mailto:avalon-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:avalon-dev-help@;jakarta.apache.org>
- DefaultInstrumentManager and sample paths Marcus Crafter
- Re: DefaultInstrumentManager and sample paths Leif Mortenson
- Re: DefaultInstrumentManager and sample paths Marcus Crafter
- Re: DefaultInstrumentManager and sample paths Leif Mortenson
- Re: DefaultInstrumentManager and sample paths Marcus Crafter
