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

org.eclipse.bpmn2.Extension Maven / Gradle / Ivy

There is a newer version: 7.54.0.Final
Show newest version
/**
 * 
 * 
 * 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 javax.xml.namespace.QName;

import org.eclipse.emf.ecore.EObject;

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

* The following features are supported: *

*
    *
  • {@link org.eclipse.bpmn2.Extension#getDefinition Definition}
  • *
  • {@link org.eclipse.bpmn2.Extension#isMustUnderstand Must Understand}
  • *
  • {@link org.eclipse.bpmn2.Extension#getXsdDefinition Xsd Definition}
  • *
* * @see org.eclipse.bpmn2.Bpmn2Package#getExtension() * @model extendedMetaData="name='tExtension' kind='elementOnly'" * @generated */ public interface Extension extends EObject { /** * Returns the value of the 'Definition' containment reference. * * * @return the value of the 'Definition' containment reference. * @see #setDefinition(ExtensionDefinition) * @see org.eclipse.bpmn2.Bpmn2Package#getExtension_Definition() * @model containment="true" required="true" ordered="false" * @generated */ ExtensionDefinition getDefinition(); /** * Sets the value of the '{@link org.eclipse.bpmn2.Extension#getDefinition Definition}' containment reference. * * * @param value the new value of the 'Definition' containment reference. * @see #getDefinition() * @generated */ void setDefinition(ExtensionDefinition value); /** * Returns the value of the 'Must Understand' attribute. * The default value is "false". * * * @return the value of the 'Must Understand' attribute. * @see #setMustUnderstand(boolean) * @see org.eclipse.bpmn2.Bpmn2Package#getExtension_MustUnderstand() * @model default="false" required="true" ordered="false" * extendedMetaData="kind='attribute' name='mustUnderstand'" * @generated */ boolean isMustUnderstand(); /** * Sets the value of the '{@link org.eclipse.bpmn2.Extension#isMustUnderstand Must Understand}' attribute. * * * @param value the new value of the 'Must Understand' attribute. * @see #isMustUnderstand() * @generated */ void setMustUnderstand(boolean value); /** * Returns the value of the 'Xsd Definition' attribute. * * * @return the value of the 'Xsd Definition' attribute. * @see #setXsdDefinition(QName) * @see org.eclipse.bpmn2.Bpmn2Package#getExtension_XsdDefinition() * @model dataType="org.eclipse.emf.ecore.xml.type.QName" * extendedMetaData="kind='attribute' name='definition'" * @generated */ QName getXsdDefinition(); /** * Sets the value of the '{@link org.eclipse.bpmn2.Extension#getXsdDefinition Xsd Definition}' attribute. * * * @param value the new value of the 'Xsd Definition' attribute. * @see #getXsdDefinition() * @generated */ void setXsdDefinition(QName value); } // Extension




© 2015 - 2025 Weber Informatics LLC | Privacy Policy