blob: eae5542c1e4f2cc04c56df6a83a69819e3c08287 [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.core;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>YValue Bindable</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.core.common.model.core.YValueBindable#getValueBindingEndpoint <em>Value Binding Endpoint</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.ecview.core.common.model.core.CoreModelPackage#getYValueBindable()
* @model interface="true" abstract="true"
* @generated
*/
public interface YValueBindable extends YBindable {
/**
* Returns the value of the '<em><b>Value Binding Endpoint</b></em>' reference.
* It is bidirectional and its opposite is '{@link org.eclipse.osbp.ecview.core.common.model.core.YEmbeddableValueEndpoint#getElement <em>Element</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value Binding Endpoint</em>' reference isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Value Binding Endpoint</em>' reference.
* @see #setValueBindingEndpoint(YEmbeddableValueEndpoint)
* @see org.eclipse.osbp.ecview.core.common.model.core.CoreModelPackage#getYValueBindable_ValueBindingEndpoint()
* @see org.eclipse.osbp.ecview.core.common.model.core.YEmbeddableValueEndpoint#getElement
* @model opposite="element"
* @generated
*/
YEmbeddableValueEndpoint getValueBindingEndpoint();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.common.model.core.YValueBindable#getValueBindingEndpoint <em>Value Binding Endpoint</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value Binding Endpoint</em>' reference.
* @see #getValueBindingEndpoint()
* @generated
*/
void setValueBindingEndpoint(YEmbeddableValueEndpoint value);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model
* @generated
*/
YEmbeddableValueEndpoint createValueEndpoint();
} // YValueBindable