Class AssemblyConnectorCreator
- java.lang.Object
-
- org.palladiosimulator.generator.fluent.shared.structure.Entity
-
- org.palladiosimulator.generator.fluent.system.structure.SystemEntity
-
- org.palladiosimulator.generator.fluent.system.structure.connector.AbstractConnectorCreator
-
- org.palladiosimulator.generator.fluent.system.structure.connector.operation.AssemblyConnectorCreator
-
public class AssemblyConnectorCreator extends AbstractConnectorCreator
This class constructs anAssemblyConnector.- See Also:
AssemblyConnector
-
-
Field Summary
-
Fields inherited from class org.palladiosimulator.generator.fluent.system.structure.SystemEntity
system
-
-
Constructor Summary
Constructors Constructor Description AssemblyConnectorCreator(SystemCreator systemCreator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.palladiosimulator.pcm.core.composition.AssemblyConnectorbuild()Turns the entity in the making into the finished entity.AssemblyConnectorCreatorwithName(String name)Defines the unique name of this current entity.OperationProvidedRoleSelector<AssemblyConnectorCreator>withProvidingAssemblyContext(String name)Defines theAssemblyContextthat provides the role.OperationProvidedRoleSelector<AssemblyConnectorCreator>withProvidingAssemblyContext(org.palladiosimulator.pcm.core.composition.AssemblyContext context)Defines theAssemblyContextthat provides the role.OperationRequiredRoleSelector<AssemblyConnectorCreator>withRequiringAssemblyContext(String name)Defines theAssemblyContextthat requires the role.OperationRequiredRoleSelector<AssemblyConnectorCreator>withRequiringAssemblyContext(org.palladiosimulator.pcm.core.composition.AssemblyContext context)Defines theAssemblyContextthat requires the role.
-
-
-
Constructor Detail
-
AssemblyConnectorCreator
public AssemblyConnectorCreator(SystemCreator systemCreator)
-
-
Method Detail
-
withRequiringAssemblyContext
public OperationRequiredRoleSelector<AssemblyConnectorCreator> withRequiringAssemblyContext(org.palladiosimulator.pcm.core.composition.AssemblyContext context)
Defines theAssemblyContextthat requires the role.- Parameters:
context-- Returns:
- this assembly connector
- See Also:
AssemblyContext
-
withRequiringAssemblyContext
public OperationRequiredRoleSelector<AssemblyConnectorCreator> withRequiringAssemblyContext(String name) throws NoSuchElementException
Defines theAssemblyContextthat requires the role. The assembly contexts added to the org.palladiosimulator.generator.fluent.system are searched for one that matches the given name.- Parameters:
name-- Returns:
- this assembly connector
- Throws:
NoSuchElementException- Thrown if no element matches the given name.- See Also:
AssemblyContext
-
withProvidingAssemblyContext
public OperationProvidedRoleSelector<AssemblyConnectorCreator> withProvidingAssemblyContext(org.palladiosimulator.pcm.core.composition.AssemblyContext context)
Defines theAssemblyContextthat provides the role.- Parameters:
context-- Returns:
- this assembly connector
- See Also:
AssemblyContext
-
withProvidingAssemblyContext
public OperationProvidedRoleSelector<AssemblyConnectorCreator> withProvidingAssemblyContext(String name) throws NoSuchElementException
Defines theAssemblyContextthat provides the role. The assembly contexts added to the org.palladiosimulator.generator.fluent.system are searched for one that matches the given name.- Parameters:
name-- Returns:
- this assembly connector
- Throws:
NoSuchElementException- Thrown if no element matches the given name.
-
build
public org.palladiosimulator.pcm.core.composition.AssemblyConnector build()
Description copied from class:EntityTurns the entity in the making into the finished entity.- Specified by:
buildin classAbstractConnectorCreator- Returns:
- the finished entity
-
withName
public AssemblyConnectorCreator withName(String name)
Description copied from class:EntityDefines the unique name of this current entity. Once created entities are referenced by this name. Only entities with a unique name can be fetched from the model.
-
-