Uses of Interface
org.objectweb.kilim.description.BasicElement

Packages that use BasicElement
org.objectweb.kilim.description   
org.objectweb.kilim.model   
 

Uses of BasicElement in org.objectweb.kilim.description
 

Subinterfaces of BasicElement in org.objectweb.kilim.description
 interface BasicNamedElement
           
 

Classes in org.objectweb.kilim.description that implement BasicElement
 class ArraySource
           
 class BasicNamedElementImpl
           
 class ClassSource
           
 class EventSource
           
 class InlinedElement
           
 class NullElement
           
 class Port
           
 class Property
           
 class Provider
           
 class Reference
           
 class TpAccessor
           
 class TpConstructor
           
 class TpGetter
           
 class TpMethod
           
 class TpSetter
           
 class Transformer
           
 

Fields in org.objectweb.kilim.description declared as BasicElement
private  BasicElement Transformer.action
           
private  BasicElement TpSetter.value
           
private  BasicElement TpMethod.support
           
protected  BasicElement TpAccessor.support
           
private  BasicElement Provider.source
           
private  BasicElement Parameter.target
           
 

Methods in org.objectweb.kilim.description that return BasicElement
 BasicElement Transformer.getAction()
          returns the action (i.e.
 BasicElement TpSetter.getValue()
          returns the value associated to the setter.
 BasicElement TpMethod.getSupport()
           
 BasicElement TpAccessor.getSupport()
           
 BasicElement Provider.getSource()
          returns the source.
 BasicElement Parameter.getTarget()
           
 BasicElement ArraySource.getElement(int aIndex)
          returns the element stored at a given position.
 

Methods in org.objectweb.kilim.description with parameters of type BasicElement
 void Transformer.setAction(BasicElement aAction)
          sets the action (i.e.
 void TpSetter.setValue(BasicElement aValue)
          sets the value associated to the setter.
 void TpMethod.setSupport(BasicElement aSupport)
          sets the support of the method i.e.
 void TpAccessor.setSupport(BasicElement aElement)
          sets the support i.e.
 void Provider.setSource(BasicElement aSource)
          sets the source of the provider.
 void Parameter.setTarget(BasicElement aTarget)
           
 void Binding.bindProvider(BasicElement aElement)
          adds the target bound port.
 void Binding.unbindProvider(BasicElement aElement)
          removes a previously bound source.
 void Trigger.addTransformer(BasicElement aTransformer)
           
 void Trigger.removeTransformer(BasicElement aTransformer)
           
 void ArraySource.addElement(BasicElement value)
          extends an array by adding a new element in the array.
 

Constructors in org.objectweb.kilim.description with parameters of type BasicElement
TpSetter(BasicElement aSupport, java.lang.String aField, boolean jStatic, TemplateDescription aTemplate)
          The public constructor for a setter description.
TpGetter(BasicElement aSupport, java.lang.String aField, boolean jsStatic, TemplateDescription aTemplate)
          Tje public constructor for getter description.
TpMethod(BasicElement aSupport, java.lang.String aMethodName, boolean jStatic, boolean isP, boolean isT, TemplateDescription aTemplate)
          public constructor of a descriptor for a method used in a kilim template.
TpConstructor(BasicElement aSupport, boolean isP, boolean isT, TemplateDescription aTemplate)
          A public constructor for "constructor" descriptions.
TpConstructor(BasicElement aSupport, TemplateDescription aTemplate)
          A public constructor for "constructor" descriptions.
TpAccessor(BasicElement aSupport, java.lang.String aField, boolean jStatic, boolean isP, boolean isT, TemplateDescription aTemplate)
          The public constructor for TpAccessor.
Parameter(java.lang.String aName, java.lang.String aTypeName, BasicElement aTarget)
          Method ParameterImpl.
 

Uses of BasicElement in org.objectweb.kilim.model
 

Methods in org.objectweb.kilim.model with parameters of type BasicElement
private  ComponentElement ComponentFactory.newComponentElement1(BasicElement elem)