Uses of Interface
org.jactr.instrument.IInstrument

Packages that use IInstrument
org.jactr.core.logging.impl   
org.jactr.core.model   
org.jactr.core.model.basic   
org.jactr.core.model.event   
 

Uses of IInstrument in org.jactr.core.logging.impl
 

Classes in org.jactr.core.logging.impl that implement IInstrument
 class DefaultModelLogger
          demuxing logger
 

Uses of IInstrument in org.jactr.core.model
 

Methods in org.jactr.core.model that return IInstrument
 IInstrument IModel.getInstrument(java.lang.Class<? extends IInstrument> instrumentClass)
           
 

Methods in org.jactr.core.model that return types with arguments of type IInstrument
 java.util.Collection<IInstrument> IModel.getInstruments()
           
 

Methods in org.jactr.core.model with parameters of type IInstrument
 void IModel.install(IInstrument installable)
          install some other installable element, attempting to install a module or an extention here will reroute it to the more specific methods.
 void IModel.uninstall(IInstrument installable)
           
 

Method parameters in org.jactr.core.model with type arguments of type IInstrument
 IInstrument IModel.getInstrument(java.lang.Class<? extends IInstrument> instrumentClass)
           
 

Uses of IInstrument in org.jactr.core.model.basic
 

Methods in org.jactr.core.model.basic that return IInstrument
 IInstrument BasicModel.getInstrument(java.lang.Class<? extends IInstrument> instrumentClass)
           
 

Methods in org.jactr.core.model.basic that return types with arguments of type IInstrument
 java.util.Collection<IInstrument> BasicModel.getInstruments()
           
 

Methods in org.jactr.core.model.basic with parameters of type IInstrument
 void BasicModel.install(IInstrument instrument)
           
 void BasicModel.uninstall(IInstrument installable)
           
 

Method parameters in org.jactr.core.model.basic with type arguments of type IInstrument
 IInstrument BasicModel.getInstrument(java.lang.Class<? extends IInstrument> instrumentClass)
           
 

Uses of IInstrument in org.jactr.core.model.event
 

Methods in org.jactr.core.model.event that return IInstrument
 IInstrument ModelEvent.getInstrument()
           
 

Constructors in org.jactr.core.model.event with parameters of type IInstrument
ModelEvent(IModel model, IInstrument instrument)