Interface BindingRoot
- All Known Subinterfaces:
 TopLevelContainer
- All Known Implementing Classes:
 FPMIWindow,VisionTemplate
public interface BindingRoot
- 
Method Summary
Modifier and TypeMethodDescriptiongetComponentForPath(String path) getPathForComponent(Component component) voidinitialize(VisionClientContext context) Initialize this root.booleanReturns true if this BindingRoot is considered to be running/active.voidshutdown()Shutdown the root.voidstartup()Start up the root. 
- 
Method Details
- 
getInteractionController
InteractionController getInteractionController() - 
getPathForComponent
 - 
getComponentForPath
 - 
initialize
Initialize this root. Should connect any bindings, but shouldn't start anything up. - 
startup
void startup()Start up the root. Start-up adapters, and start-up any children ComponentLifecycles. - 
shutdown
void shutdown()Shutdown the root. Shut-down adapters, and shut-down any children ComponentLifecycles. - 
isStarted
boolean isStarted()Returns true if this BindingRoot is considered to be running/active. Typically, this means that its initialized, started, and hasn't been shutdown. 
 -