Uses of Interface
aokell.lib.control.Controller

Packages that use Controller
aokell.lib.control.attribute This package contains the implementation of the AttributeController interface. 
aokell.lib.control.binding This package contains the implementations of the BindingController interface for flat, primitive and composite components. 
aokell.lib.control.component This package contains the implementations of the Component interface for composite and non-composite components. 
aokell.lib.control.content This package contains the implementation of the ContentController interface. 
aokell.lib.control.factory This package contains the implementation of the Factory controller interface. 
aokell.lib.control.lifecycle This package contains the implementations of the LifeCyleController interface for non composite (e.g. flat and primitive) and composite components. 
aokell.lib.control.name This package contains the implementation of the NameController interface. 
aokell.lib.control.superc This package contains the implementation of the SuperController interface. 
 

Uses of Controller in aokell.lib.control.attribute
 

Classes in aokell.lib.control.attribute that implement Controller
 class AttributeControllerImpl
          Implementation of the attribute controller.
 

Uses of Controller in aokell.lib.control.binding
 

Classes in aokell.lib.control.binding that implement Controller
 class AbstractBindingControllerImpl
          Root class for binding controllers implementations.
 class CompositeAutoBindingControllerImpl
          Implementation of the binding controller for composite components.
 class CompositeBindingControllerImpl
          Implementation of the binding controller for composite components.
 class CompositeTemplateBindingControllerImpl
          Implementation of the binding controller for composite template components.
 class FlatBindingControllerImpl
          Implementation of the binding controller for flat components.
 class FlatTemplateBindingControllerImpl
          Implementation of the binding controller for flat template components.
 class PrimitiveAutoBindingControllerImpl
          Implementation of the binding controller for primitive components.
 class PrimitiveBindingControllerImpl
          Implementation of the binding controller for primitive components.
 class PrimitiveTemplateBindingControllerImpl
          Implementation of the binding controller for primitive template components.
 

Uses of Controller in aokell.lib.control.component
 

Classes in aokell.lib.control.component that implement Controller
 class ComponentImpl
          Root class for implementations of the Component interface.
 class CompositeComponentImpl
          Implementation of the Component interface for composite components.
 

Methods in aokell.lib.control.component that return Controller
 Controller[] ComponentItf.getFcControllers()
          Return the list of controllers implemented by the component.
 Controller[] ComponentImpl.getFcControllers()
          Return the array of control interfaces implemented by the component.
 

Methods in aokell.lib.control.component with parameters of type Controller
 void ComponentItf.addFcController(InterfaceType it, Controller ctrl)
          Declare a new controller implemented by the component.
 void ComponentImpl.addFcController(InterfaceType it, Controller ctrl)
          Declare a new controller implemented by the component.
 

Uses of Controller in aokell.lib.control.content
 

Classes in aokell.lib.control.content that implement Controller
 class ContentControllerImpl
          Implementation for the content controller.
 class TemplateContentControllerImpl
          Implementation for the content controller for template components.
 

Uses of Controller in aokell.lib.control.factory
 

Classes in aokell.lib.control.factory that implement Controller
 class AbstractFactoryImpl
          Root implementation for primitive and composite factories.
 class CompositeFactoryImpl
          Implementation of the factory interface for composite components.
 class PrimitiveFactoryImpl
          Implementation of the factory interface for primitive components.
 

Uses of Controller in aokell.lib.control.lifecycle
 

Classes in aokell.lib.control.lifecycle that implement Controller
 class AbstractLifeCycleControllerImpl
          Root class for life cyle controller implementations.
 class CompositeLifeCycleControllerImpl
          Default implementation of the life cyle controller for composite components.
 class NonCompositeLifeCycleControllerImpl
          Default implementation of the life cyle controller for non composite components.
 

Uses of Controller in aokell.lib.control.name
 

Classes in aokell.lib.control.name that implement Controller
 class NameControllerImpl
          Implementation of the name controller.
 

Uses of Controller in aokell.lib.control.superc
 

Classes in aokell.lib.control.superc that implement Controller
 class SuperControllerImpl
          Implementation of the super controller.