/** * <copyright> * Copyright (c) 2005 IBM Corporation and others. * 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: * IBM Corporation - initial API and implementation * </copyright> * * $Id: Assign.java,v 1.5 2007/12/06 20:01:24 smoser Exp $ */ package org.eclipse.bpel.model; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Assign</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * Used to update values of containers with new data. Assigns the Form r-value to the To l-value. An Assign is an atomic Activity. All copy elements succeed or none of them do. Exceptions are raised by incompatible types. * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.bpel.model.Assign#getCopy <em>Copy</em>}</li> * <li>{@link org.eclipse.bpel.model.Assign#getValidate <em>Validate</em>}</li> * </ul> * </p> * * @see org.eclipse.bpel.model.BPELPackage#getAssign() * @model * @generated */ public interface Assign extends Activity { /** * Returns the value of the '<em><b>Copy</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.bpel.model.Copy}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Copy</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>Copy</em>' containment reference list. * @see org.eclipse.bpel.model.BPELPackage#getAssign_Copy() * @model containment="true" required="true" * @generated */ EList<Copy> getCopy(); /** * Returns the value of the '<em><b>Validate</b></em>' attribute. * The default value is <code>"false"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Validate</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Validate</em>' attribute. * @see #setValidate(Boolean) * @see org.eclipse.bpel.model.BPELPackage#getAssign_Validate() * @model default="false" * @generated */ Boolean getValidate(); /** * Sets the value of the '{@link org.eclipse.bpel.model.Assign#getValidate <em>Validate</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Validate</em>' attribute. * @see #getValidate() */ void setValidate(Boolean value); } // Assign