blob: 52b0358b22bf67a670472abbaeaa27c0547f3cbd [file] [log] [blame]
/**
* <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: To.java,v 1.5 2011/03/30 18:54:25 rbrodt Exp $
*/
package org.eclipse.bpel.model;
import org.eclipse.bpel.model.messageproperties.Property;
import org.eclipse.wst.wsdl.Part;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>To</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Represents an l-value in an assignment activity. Can be used to query a node of a part of a container, a property of a container, or a service reference of a partner.
* <!-- end-model-doc -->
*
*
* @see org.eclipse.bpel.model.BPELPackage#getTo()
* @model
* @generated
*/
public interface To extends BPELExtensibleElement, AbstractAssignBound {
/**
* Sets the value of the '{@link org.eclipse.bpel.model.To#getVariable <em>Variable</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Variable</em>' reference.
* @see #getVariable()
*/
void setVariable(Variable value);
/**
* Sets the value of the '{@link org.eclipse.bpel.model.To#getPart <em>Part</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Part</em>' reference.
* @see #getPart()
*/
void setPart(Part value);
/**
* Sets the value of the '{@link org.eclipse.bpel.model.To#getPartnerLink <em>Partner Link</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Partner Link</em>' reference.
* @see #getPartnerLink()
*/
void setPartnerLink(PartnerLink value);
/**
* Sets the value of the '{@link org.eclipse.bpel.model.To#getProperty <em>Property</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Property</em>' reference.
* @see #getProperty()
*/
void setProperty(Property value);
} // To