Uses of Interface
org.jacp.api.component.ISubComponent

Packages that use ISubComponent
org.jacp.api.component   
org.jacp.api.coordinator   
org.jacp.api.perspective   
 

Uses of ISubComponent in org.jacp.api.component
 

Subinterfaces of ISubComponent in org.jacp.api.component
 interface ICallbackComponent<L,A,M>
          This interface defines methods for background/callback non UI components.
 interface IStateLessCallabackComponent<L,A,M>
          Represents a state less background/callback component.
 interface IVComponent<C,L,A,M>
          Represents an UI component handled by a perspective.
 

Uses of ISubComponent in org.jacp.api.coordinator
 

Methods in org.jacp.api.coordinator that return types with arguments of type ISubComponent
 java.util.concurrent.BlockingQueue<ISubComponent<L,A,M>> IComponentDelegator.getComponentDelegateQueue()
          Get the delegate queue to add components to be delegated.
 

Methods in org.jacp.api.coordinator with parameters of type ISubComponent
 void IComponentCoordinator.addComponent(ISubComponent<L,A,M> component)
          Add the component to observe.
 void IComponentDelegator.delegateComponent(ISubComponent<L,A,M> component)
          Handles delegate of a component.
 void IComponentCoordinator.removeComponent(ISubComponent<L,A,M> component)
          Remove component; e.g.
 

Uses of ISubComponent in org.jacp.api.perspective
 

Methods in org.jacp.api.perspective that return types with arguments of type ISubComponent
 java.util.concurrent.BlockingQueue<ISubComponent<L,A,M>> IPerspective.getComponentDelegateQueue()
          Returns delegate queue to delegate components to correct target
 java.util.List<ISubComponent<L,A,M>> IPerspective.getSubcomponents()
          Returns all subcomponents in perspective.
 

Method parameters in org.jacp.api.perspective with type arguments of type ISubComponent
 void IPerspective.init(java.util.concurrent.BlockingQueue<ISubComponent<L,A,M>> componentDelegateQueue, java.util.concurrent.BlockingQueue<IDelegateDTO<A,M>> messageDelegateQueue)
          The initialization method.
 void IPerspective.postInit(IComponentHandler<ISubComponent<L,A,M>,IAction<A,M>> componentHandler)
          post init method to set correct component handler and to initialize components depending on objects created in startUp sequence
 void IPerspective.setSubcomponents(java.util.List<ISubComponent<L,A,M>> subComponents)
          Set all subcomponents handled by the perspective.