All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.omg.bpmn.bpmn2.ExtensionAttributeDefinition Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2012 - 2024 Data In Motion and others.
 * All rights reserved. 
 * 
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 * 
 * SPDX-License-Identifier: EPL-2.0
 * 
 * Contributors:
 *      Mark Hoffmann - initial API and implementation
 */
package org.omg.bpmn.bpmn2;

import org.eclipse.emf.ecore.EObject;

import org.osgi.annotation.versioning.ProviderType;

/**
 * 
 * A representation of the model object 'Extension Attribute Definition'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.omg.bpmn.bpmn2.ExtensionAttributeDefinition#getName Name}
  • *
  • {@link org.omg.bpmn.bpmn2.ExtensionAttributeDefinition#getType Type}
  • *
  • {@link org.omg.bpmn.bpmn2.ExtensionAttributeDefinition#isIsReference Is Reference}
  • *
  • {@link org.omg.bpmn.bpmn2.ExtensionAttributeDefinition#getExtensionDefinition Extension Definition}
  • *
* * @see org.omg.bpmn.bpmn2.Bpmn2Package#getExtensionAttributeDefinition() * @model * @generated */ @ProviderType public interface ExtensionAttributeDefinition extends EObject { /** * Returns the value of the 'Name' attribute. * * * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.omg.bpmn.bpmn2.Bpmn2Package#getExtensionAttributeDefinition_Name() * @model required="true" ordered="false" * @generated */ String getName(); /** * Sets the value of the '{@link org.omg.bpmn.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.omg.bpmn.bpmn2.Bpmn2Package#getExtensionAttributeDefinition_Type() * @model required="true" ordered="false" * @generated */ String getType(); /** * Sets the value of the '{@link org.omg.bpmn.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.omg.bpmn.bpmn2.Bpmn2Package#getExtensionAttributeDefinition_IsReference() * @model default="false" required="true" ordered="false" * @generated */ boolean isIsReference(); /** * Sets the value of the '{@link org.omg.bpmn.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.omg.bpmn.bpmn2.ExtensionDefinition#getExtensionAttributeDefinitions Extension Attribute Definitions}'. * * * @return the value of the 'Extension Definition' container reference. * @see #setExtensionDefinition(ExtensionDefinition) * @see org.omg.bpmn.bpmn2.Bpmn2Package#getExtensionAttributeDefinition_ExtensionDefinition() * @see org.omg.bpmn.bpmn2.ExtensionDefinition#getExtensionAttributeDefinitions * @model opposite="extensionAttributeDefinitions" resolveProxies="false" required="true" derived="true" ordered="false" * @generated */ ExtensionDefinition getExtensionDefinition(); /** * Sets the value of the '{@link org.omg.bpmn.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 - 2024 Weber Informatics LLC | Privacy Policy