Uses of Interface
org.camunda.bpm.model.xml.type.ModelElementType

Packages that use ModelElementType
org.camunda.bpm.model.xml   
org.camunda.bpm.model.xml.impl   
org.camunda.bpm.model.xml.impl.instance   
org.camunda.bpm.model.xml.impl.type   
org.camunda.bpm.model.xml.impl.type.attribute   
org.camunda.bpm.model.xml.impl.type.child   
org.camunda.bpm.model.xml.impl.type.reference   
org.camunda.bpm.model.xml.impl.util   
org.camunda.bpm.model.xml.instance   
org.camunda.bpm.model.xml.test   
org.camunda.bpm.model.xml.test.assertions   
org.camunda.bpm.model.xml.type   
org.camunda.bpm.model.xml.type.attribute   
org.camunda.bpm.model.xml.type.child   
org.camunda.bpm.model.xml.type.reference   
 

Uses of ModelElementType in org.camunda.bpm.model.xml
 

Methods in org.camunda.bpm.model.xml that return ModelElementType
abstract  ModelElementType ModelBuilder.defineGenericType(String typeName, String typeNamespaceUri)
           
 ModelElementType Model.getType(Class<? extends ModelElementInstance> instanceClass)
          Gets the defined ModelElementType of a ModelElementInstance.
 ModelElementType Model.getTypeForName(String typeName)
          Gets the defined ModelElementType for a type by its name.
 ModelElementType Model.getTypeForName(String namespaceUri, String typeName)
          Gets the defined ModelElementType for a type by its name and namespace URI.
 

Methods in org.camunda.bpm.model.xml that return types with arguments of type ModelElementType
 Collection<ModelElementType> Model.getTypes()
          Gets the collection of all ModelElementType defined in the model.
 

Methods in org.camunda.bpm.model.xml with parameters of type ModelElementType
 Collection<ModelElementInstance> ModelInstance.getModelElementsByType(ModelElementType referencingType)
          Find all elements of a type.
<T extends ModelElementInstance>
T
ModelInstance.newInstance(ModelElementType type)
          Creates a new instance of type.
 

Uses of ModelElementType in org.camunda.bpm.model.xml.impl
 

Methods in org.camunda.bpm.model.xml.impl that return ModelElementType
 ModelElementType ModelBuilderImpl.defineGenericType(String typeName, String typeNamespaceUri)
           
 ModelElementType ModelImpl.getType(Class<? extends ModelElementInstance> instanceClass)
           
 ModelElementType ModelImpl.getTypeForName(String typeName)
           
 ModelElementType ModelImpl.getTypeForName(String namespaceUri, String typeName)
           
 ModelElementType ModelInstanceImpl.registerGenericType(String namespaceUri, String localName)
           
 

Methods in org.camunda.bpm.model.xml.impl that return types with arguments of type ModelElementType
 Collection<ModelElementType> ModelImpl.getTypes()
           
 

Methods in org.camunda.bpm.model.xml.impl with parameters of type ModelElementType
 Collection<ModelElementInstance> ModelInstanceImpl.getModelElementsByType(ModelElementType type)
           
<T extends ModelElementInstance>
T
ModelInstanceImpl.newInstance(ModelElementType type)
           
 void ModelImpl.registerType(ModelElementType modelElementType, Class<? extends ModelElementInstance> instanceType)
          Registers a ModelElementType in this Model.
 

Uses of ModelElementType in org.camunda.bpm.model.xml.impl.instance
 

Methods in org.camunda.bpm.model.xml.impl.instance that return ModelElementType
 ModelElementType ModelElementInstanceImpl.getElementType()
           
 

Methods in org.camunda.bpm.model.xml.impl.instance with parameters of type ModelElementType
 Collection<ModelElementInstance> ModelElementInstanceImpl.getChildElementsByType(ModelElementType childElementType)
           
 

Uses of ModelElementType in org.camunda.bpm.model.xml.impl.type
 

Classes in org.camunda.bpm.model.xml.impl.type that implement ModelElementType
 class ModelElementTypeImpl
           
 

Methods in org.camunda.bpm.model.xml.impl.type that return ModelElementType
 ModelElementType ModelElementTypeBuilderImpl.build()
           
 ModelElementType ModelElementTypeImpl.getBaseType()
           
 

Methods in org.camunda.bpm.model.xml.impl.type that return types with arguments of type ModelElementType
 List<ModelElementType> ModelElementTypeImpl.getAllChildElementTypes()
           
 Collection<ModelElementType> ModelElementTypeImpl.getAllExtendingTypes()
           
 List<ModelElementType> ModelElementTypeImpl.getChildElementTypes()
           
 Collection<ModelElementType> ModelElementTypeImpl.getExtendingTypes()
           
 

Methods in org.camunda.bpm.model.xml.impl.type with parameters of type ModelElementType
 ChildElementCollection<?> ModelElementTypeImpl.getChildElementCollection(ModelElementType childElementType)
           
 boolean ModelElementTypeImpl.isBaseTypeOf(ModelElementType elementType)
          Test if a element type is a base type of this type.
 void ModelElementTypeImpl.registerChildElementType(ModelElementType childElementType)
           
 void ModelElementTypeImpl.registerExtendingType(ModelElementType modelType)
           
 

Method parameters in org.camunda.bpm.model.xml.impl.type with type arguments of type ModelElementType
 void ModelElementTypeImpl.resolveBaseTypes(List<ModelElementType> baseTypes)
          Resolve all types which are base types of this type
 void ModelElementTypeImpl.resolveExtendingTypes(Set<ModelElementType> allExtendingTypes)
          Resolve all types recursively which are extending this type
 

Uses of ModelElementType in org.camunda.bpm.model.xml.impl.type.attribute
 

Methods in org.camunda.bpm.model.xml.impl.type.attribute that return ModelElementType
 ModelElementType AttributeImpl.getOwningElementType()
           
 

Constructors in org.camunda.bpm.model.xml.impl.type.attribute with parameters of type ModelElementType
BooleanAttribute(ModelElementType owningElementType)
           
EnumAttribute(ModelElementType owningElementType, Class<T> type)
           
NamedEnumAttribute(ModelElementType owningElementType, Class<T> type)
           
StringAttribute(ModelElementType owningElementType)
           
 

Uses of ModelElementType in org.camunda.bpm.model.xml.impl.type.child
 

Methods in org.camunda.bpm.model.xml.impl.type.child that return ModelElementType
 ModelElementType ChildElementCollectionImpl.getChildElementType(Model model)
           
 ModelElementType ChildElementCollectionImpl.getParentElementType()
           
 

Constructors in org.camunda.bpm.model.xml.impl.type.child with parameters of type ModelElementType
ChildElementBuilderImpl(Class<T> childElementTypeClass, ModelElementType parentElementType)
           
ChildElementCollectionBuilderImpl(Class<T> childElementTypeClass, ModelElementType parentElementType)
           
 

Uses of ModelElementType in org.camunda.bpm.model.xml.impl.type.reference
 

Methods in org.camunda.bpm.model.xml.impl.type.reference that return ModelElementType
 ModelElementType AttributeReferenceImpl.getReferenceSourceElementType()
           
 ModelElementType ElementReferenceCollectionImpl.getReferenceSourceElementType()
           
 

Uses of ModelElementType in org.camunda.bpm.model.xml.impl.util
 

Methods in org.camunda.bpm.model.xml.impl.util that return types with arguments of type ModelElementType
static Collection<ModelElementType> ModelUtil.calculateAllBaseTypes(ModelElementType type)
          Calculate a collection of all base types for the given type
static Collection<ModelElementType> ModelUtil.calculateAllExtendingTypes(Model model, Collection<ModelElementType> baseTypes)
          Calculate a collection of all extending types for the given base types
 

Methods in org.camunda.bpm.model.xml.impl.util with parameters of type ModelElementType
static Collection<ModelElementType> ModelUtil.calculateAllBaseTypes(ModelElementType type)
          Calculate a collection of all base types for the given type
static String ModelUtil.getUniqueIdentifier(ModelElementType type)
           
static void ModelUtil.setGeneratedUniqueIdentifier(ModelElementType type, ModelElementInstance modelElementInstance)
          Set unique identifier if the type has a String id attribute
 

Method parameters in org.camunda.bpm.model.xml.impl.util with type arguments of type ModelElementType
static Collection<ModelElementType> ModelUtil.calculateAllExtendingTypes(Model model, Collection<ModelElementType> baseTypes)
          Calculate a collection of all extending types for the given base types
static int ModelUtil.getIndexOfElementType(ModelElementInstance modelElement, List<ModelElementType> childElementTypes)
          Find the index of the type of a model element in a list of element types
 

Uses of ModelElementType in org.camunda.bpm.model.xml.instance
 

Methods in org.camunda.bpm.model.xml.instance that return ModelElementType
 ModelElementType ModelElementInstance.getElementType()
          Returns the element type of this.
 

Methods in org.camunda.bpm.model.xml.instance with parameters of type ModelElementType
 Collection<ModelElementInstance> ModelElementInstance.getChildElementsByType(ModelElementType childElementType)
          Return all child elements of a given type
 

Uses of ModelElementType in org.camunda.bpm.model.xml.test
 

Fields in org.camunda.bpm.model.xml.test declared as ModelElementType
 ModelElementType AbstractModelElementInstanceTest.ChildElementAssumption.childElementType
           
 ModelElementType AbstractModelElementInstanceTest.TypeAssumption.extendsType
           
static ModelElementType AbstractModelElementInstanceTest.modelElementType
           
 

Methods in org.camunda.bpm.model.xml.test that return ModelElementType
 ModelElementType GetModelElementTypeRule.getModelElementType()
           
 ModelElementType AbstractModelElementInstanceTest.getType(Class<? extends ModelElementInstance> instanceClass)
           
 

Methods in org.camunda.bpm.model.xml.test with parameters of type ModelElementType
 ChildElementAssert AbstractModelElementInstanceTest.assertThatChildElement(ModelElementType childElementType)
           
 

Uses of ModelElementType in org.camunda.bpm.model.xml.test.assertions
 

Methods in org.camunda.bpm.model.xml.test.assertions with parameters of type ModelElementType
static ModelElementTypeAssert ModelAssertions.assertThat(ModelElementType actual)
           
 ModelElementTypeAssert ModelElementTypeAssert.extendsType(ModelElementType baseType)
           
 ModelElementTypeAssert ModelElementTypeAssert.hasChildElements(ModelElementType... types)
           
 AttributeAssert AttributeAssert.hasOwningElementType(ModelElementType owningElementType)
           
 ChildElementAssert ChildElementAssert.hasParentElementType(ModelElementType parentElementType)
           
 ModelElementTypeAssert ModelElementTypeAssert.isExtendedBy(ModelElementType... types)
           
 ModelElementTypeAssert ModelElementTypeAssert.isNotExtendedBy(ModelElementType... types)
           
 

Constructors in org.camunda.bpm.model.xml.test.assertions with parameters of type ModelElementType
ModelElementTypeAssert(ModelElementType actual)
           
 

Uses of ModelElementType in org.camunda.bpm.model.xml.type
 

Methods in org.camunda.bpm.model.xml.type that return ModelElementType
 ModelElementType ModelElementTypeBuilder.build()
           
 ModelElementType ModelElementType.getBaseType()
           
 

Methods in org.camunda.bpm.model.xml.type that return types with arguments of type ModelElementType
 List<ModelElementType> ModelElementType.getAllChildElementTypes()
           
 Collection<ModelElementType> ModelElementType.getAllExtendingTypes()
           
 List<ModelElementType> ModelElementType.getChildElementTypes()
           
 Collection<ModelElementType> ModelElementType.getExtendingTypes()
           
 

Uses of ModelElementType in org.camunda.bpm.model.xml.type.attribute
 

Methods in org.camunda.bpm.model.xml.type.attribute that return ModelElementType
 ModelElementType Attribute.getOwningElementType()
           
 

Uses of ModelElementType in org.camunda.bpm.model.xml.type.child
 

Methods in org.camunda.bpm.model.xml.type.child that return ModelElementType
 ModelElementType ChildElementCollection.getChildElementType(Model model)
          Get the model element type of the elements contained in this collection.
 ModelElementType ChildElementCollection.getParentElementType()
          Get the model element type of the element owns the collection
 

Uses of ModelElementType in org.camunda.bpm.model.xml.type.reference
 

Methods in org.camunda.bpm.model.xml.type.reference that return ModelElementType
 ModelElementType Reference.getReferenceSourceElementType()
           
 



Copyright © 2015 camunda services GmbH. All rights reserved.