Uses of Interface
org.objectweb.kilim.model.ComponentInterface

Packages that use ComponentInterface
org.objectweb.kilim.model   
org.objectweb.kilim.model.instanciation   
 

Uses of ComponentInterface in org.objectweb.kilim.model
 

Subinterfaces of ComponentInterface in org.objectweb.kilim.model
 interface ComponentProperty
           
 

Classes in org.objectweb.kilim.model that implement ComponentInterface
private static class ComponentFactory.RTClassSource
           
private static class ComponentFactory.RTConstructor
           
private static class ComponentFactory.RTGetter
           
private static class ComponentFactory.RTMethod
           
private static class ComponentFactory.RTNullElement
           
 class RtCollectionPort
           
 class RtComponentInterface
           
 class RtComponentProperty
           
 class RtComponentProvider
           
 class RtSingleValuePort
           
 

Methods in org.objectweb.kilim.model that return ComponentInterface
 ComponentInterface RtComponentSlot.getInterface(java.lang.String aName)
          returns the local interface identified by its local name.
 ComponentInterface RtComponent.getInterface(java.lang.String aName)
          returns an interface defined in the component
 ComponentInterface ContainerElement.getInterface(java.lang.String aName)
          returns the local interface identified by its local name.
 

Methods in org.objectweb.kilim.model with parameters of type ComponentInterface
 void RtComponentSlot.addInterface(ComponentInterface aInterface)
          adds an Interface.in the slot.
 void RtComponentSlot.removeInterface(ComponentInterface aInterface)
          removes an interface.
 void RtComponent.addInterface(ComponentInterface aElement)
          adds a new interface in the component.
 void RtComponent.removeInterface(ComponentInterface aElement)
          removes the interface from a component.
 void ContainerElement.addInterface(ComponentInterface aInterface)
          adds an Interface.in the slot.
 void ContainerElement.removeInterface(ComponentInterface aElement)
          removes the interface from a component.
 

Uses of ComponentInterface in org.objectweb.kilim.model.instanciation
 

Methods in org.objectweb.kilim.model.instanciation with parameters of type ComponentInterface
 void NullInstanciationMger.initializeInstanciation(Component aComponent, ComponentInterface aInterface, MappingContext aContext)
           
 void NullInstanciationMger.finalizeInstanciation(Component aComponent, ComponentInterface aInterface, MappingContext aContext)
           
 void BDUInstanciationMger.finalizeInstanciation(Component aComponent, ComponentInterface aInterface, MappingContext aContext)
           
 void BDUInstanciationMger.initializeInstanciation(Component aComponent, ComponentInterface aInterface, MappingContext aContext)
           
static void BDUInstanciationMger.doWhenInstanciate(Component aComponent, ComponentInterface aInterface, MappingContext aContext)
          Method doWhenInstanciate performs the component instanciation according to the following rules : it first looks up for all the nary ports directly declared at the component level and invokes the getValue() method on every provider they contain.
 void InstanciationMger.initializeInstanciation(Component aComponent, ComponentInterface aInterface)
          This is the "pre" method called by the Kilim runtime when it has to access the value of an interface (port, provider, property) belonging to a UNITIALIZED component or slot.
abstract  void InstanciationMger.initializeInstanciation(Component aComponent, ComponentInterface aInterface, MappingContext aContext)
          This is the "pre" method called by the Kilim runtime when it has to get the value of an interface (port, provider, property) belonging to a UNITIALIZED component or slot.
 void InstanciationMger.finalizeInstanciation(Component aComponent, ComponentInterface aInterface)
          This is the "post" method called by the Kilim runtime when it has to get the value of an interface (port, provider, property) belonging to a UNITIALIZED component or slot.
abstract  void InstanciationMger.finalizeInstanciation(Component aComponent, ComponentInterface aInterface, MappingContext aContext)
          This is the "post" method called by the Kilim runtime when it has to get the value of an interface (port, provider, property) belonging to a UNITIALIZED component or slot.