org.eclipse.bpmn2.ExtensionAttributeDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kie-wb-common-stunner-bpmn-emf Show documentation
Show all versions of kie-wb-common-stunner-bpmn-emf Show documentation
Kie Workbench - Common - Stunner - BPMN Definition Set - GWT Support for Eclipse EMF/XMI
/**
*
*
* Copyright (c) 2010 SAP AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Reiner Hille-Doering (SAP AG) - initial API and implementation and/or initial documentation
*
*
*/
package org.eclipse.bpmn2;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Extension Attribute Definition'.
*
*
*
* The following features are supported:
*
*
* - {@link org.eclipse.bpmn2.ExtensionAttributeDefinition#getName Name}
* - {@link org.eclipse.bpmn2.ExtensionAttributeDefinition#getType Type}
* - {@link org.eclipse.bpmn2.ExtensionAttributeDefinition#isIsReference Is Reference}
* - {@link org.eclipse.bpmn2.ExtensionAttributeDefinition#getExtensionDefinition Extension Definition}
*
*
* @see org.eclipse.bpmn2.Bpmn2Package#getExtensionAttributeDefinition()
* @model
* @generated
*/
public interface ExtensionAttributeDefinition extends EObject {
/**
* Returns the value of the 'Name' attribute.
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see org.eclipse.bpmn2.Bpmn2Package#getExtensionAttributeDefinition_Name()
* @model required="true" ordered="false"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.bpmn2.ExtensionAttributeDefinition#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Type' attribute.
*
*
* @return the value of the 'Type' attribute.
* @see #setType(String)
* @see org.eclipse.bpmn2.Bpmn2Package#getExtensionAttributeDefinition_Type()
* @model required="true" ordered="false"
* @generated
*/
String getType();
/**
* Sets the value of the '{@link org.eclipse.bpmn2.ExtensionAttributeDefinition#getType Type}' attribute.
*
*
* @param value the new value of the 'Type' attribute.
* @see #getType()
* @generated
*/
void setType(String value);
/**
* Returns the value of the 'Is Reference' attribute.
* The default value is "false"
.
*
*
* @return the value of the 'Is Reference' attribute.
* @see #setIsReference(boolean)
* @see org.eclipse.bpmn2.Bpmn2Package#getExtensionAttributeDefinition_IsReference()
* @model default="false" required="true" ordered="false"
* @generated
*/
boolean isIsReference();
/**
* Sets the value of the '{@link org.eclipse.bpmn2.ExtensionAttributeDefinition#isIsReference Is Reference}' attribute.
*
*
* @param value the new value of the 'Is Reference' attribute.
* @see #isIsReference()
* @generated
*/
void setIsReference(boolean value);
/**
* Returns the value of the 'Extension Definition' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.bpmn2.ExtensionDefinition#getExtensionAttributeDefinitions Extension Attribute Definitions}'.
*
*
* @return the value of the 'Extension Definition' container reference.
* @see #setExtensionDefinition(ExtensionDefinition)
* @see org.eclipse.bpmn2.Bpmn2Package#getExtensionAttributeDefinition_ExtensionDefinition()
* @see org.eclipse.bpmn2.ExtensionDefinition#getExtensionAttributeDefinitions
* @model opposite="extensionAttributeDefinitions" resolveProxies="false" required="true" derived="true" ordered="false"
* @generated
*/
ExtensionDefinition getExtensionDefinition();
/**
* Sets the value of the '{@link org.eclipse.bpmn2.ExtensionAttributeDefinition#getExtensionDefinition Extension Definition}' container reference.
*
*
* @param value the new value of the 'Extension Definition' container reference.
* @see #getExtensionDefinition()
* @generated
*/
void setExtensionDefinition(ExtensionDefinition value);
} // ExtensionAttributeDefinition
© 2015 - 2025 Weber Informatics LLC | Privacy Policy