blob: 4fe631b8bd7627cc9c29b55fa6d63be29a6b1e34 [file] [log] [blame]
/**
* Copyright (c) 2000-2009, Intalio Inc.
* 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:
* Intalio Inc. - initial API and implementation
*
*/
package org.eclipse.mdt.bpmn;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.util.FeatureMap;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Base Element</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.mdt.bpmn.BaseElement#getDocumentation <em>Documentation</em>}</li>
* <li>{@link org.eclipse.mdt.bpmn.BaseElement#getAny <em>Any</em>}</li>
* <li>{@link org.eclipse.mdt.bpmn.BaseElement#getId <em>Id</em>}</li>
* <li>{@link org.eclipse.mdt.bpmn.BaseElement#getAnyAttribute <em>Any Attribute</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.mdt.bpmn.BpmnPackage#getBaseElement()
* @model abstract="true"
* extendedMetaData="name='tBaseElement' kind='elementOnly'"
* @generated
*/
public interface BaseElement extends EObject {
/**
* Returns the value of the '<em><b>Documentation</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mdt.bpmn.Documentation}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Documentation</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Documentation</em>' containment reference list.
* @see org.eclipse.mdt.bpmn.BpmnPackage#getBaseElement_Documentation()
* @model containment="true"
* extendedMetaData="kind='element' name='documentation' namespace='##targetNamespace'"
* @generated
*/
EList<Documentation> getDocumentation();
/**
* Returns the value of the '<em><b>Any</b></em>' attribute list.
* The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Any</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Any</em>' attribute list.
* @see org.eclipse.mdt.bpmn.BpmnPackage#getBaseElement_Any()
* @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
* extendedMetaData="kind='elementWildcard' wildcards='##other' name=':1' processing='lax'"
* @generated
*/
FeatureMap getAny();
/**
* Returns the value of the '<em><b>Id</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Id</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Id</em>' attribute.
* @see #setId(String)
* @see org.eclipse.mdt.bpmn.BpmnPackage#getBaseElement_Id()
* @model id="true" dataType="org.eclipse.emf.ecore.xml.type.ID"
* extendedMetaData="kind='attribute' name='id'"
* @generated
*/
String getId();
/**
* Sets the value of the '{@link org.eclipse.mdt.bpmn.BaseElement#getId <em>Id</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Id</em>' attribute.
* @see #getId()
* @generated
*/
void setId(String value);
/**
* Returns the value of the '<em><b>Any Attribute</b></em>' attribute list.
* The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Any Attribute</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Any Attribute</em>' attribute list.
* @see org.eclipse.mdt.bpmn.BpmnPackage#getBaseElement_AnyAttribute()
* @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
* extendedMetaData="kind='attributeWildcard' wildcards='##other' name=':3' processing='lax'"
* @generated
*/
FeatureMap getAnyAttribute();
} // BaseElement