blob: ffc3b3d2676fd00d08d447f30271432a885ecd90 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.core.common.model.binding;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>YValue Binding</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.core.common.model.binding.YValueBinding#getTargetEndpoint <em>Target Endpoint</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.core.common.model.binding.YValueBinding#getModelEndpoint <em>Model Endpoint</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.ecview.core.common.model.binding.BindingPackage#getYValueBinding()
* @model
* @generated
*/
public interface YValueBinding extends YBinding {
/**
* Returns the value of the '<em><b>Target Endpoint</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Target Endpoint</em>' containment reference isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Target Endpoint</em>' containment reference.
* @see #setTargetEndpoint(YValueBindingEndpoint)
* @see org.eclipse.osbp.ecview.core.common.model.binding.BindingPackage#getYValueBinding_TargetEndpoint()
* @model containment="true" resolveProxies="true" required="true"
* @generated
*/
YValueBindingEndpoint getTargetEndpoint();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.common.model.binding.YValueBinding#getTargetEndpoint <em>Target Endpoint</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Target Endpoint</em>' containment reference.
* @see #getTargetEndpoint()
* @generated
*/
void setTargetEndpoint(YValueBindingEndpoint value);
/**
* Returns the value of the '<em><b>Model Endpoint</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Model Endpoint</em>' containment reference isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Model Endpoint</em>' containment reference.
* @see #setModelEndpoint(YValueBindingEndpoint)
* @see org.eclipse.osbp.ecview.core.common.model.binding.BindingPackage#getYValueBinding_ModelEndpoint()
* @model containment="true" resolveProxies="true" required="true"
* @generated
*/
YValueBindingEndpoint getModelEndpoint();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.common.model.binding.YValueBinding#getModelEndpoint <em>Model Endpoint</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Model Endpoint</em>' containment reference.
* @see #getModelEndpoint()
* @generated
*/
void setModelEndpoint(YValueBindingEndpoint value);
} // YValueBinding