blob: f4cbe0210cc3ef400999e493a66c0dff2c80d5e8 [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.semantic.uimodel;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Ui Typed Bindable Raw Type</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiTypedBindableRawType#getRawBindable <em>Raw Bindable</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiTypedBindableRawType#getRawBindablePath <em>Raw Bindable Path</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiTypedBindableRawType()
* @model
* @generated
*/
public interface UiTypedBindableRawType extends UiTypedBindable,
UiBindingExpression {
/**
* Returns the value of the '<em><b>Raw Bindable</b></em>' reference. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>Raw Bindable</em>' reference isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
*
* @return the value of the '<em>Raw Bindable</em>' reference.
* @see #setRawBindable(UiRawBindable)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiTypedBindableRawType_RawBindable()
* @model
* @generated
*/
UiRawBindable getRawBindable();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiTypedBindableRawType#getRawBindable <em>Raw Bindable</em>}' reference.
* <!-- begin-user-doc --> <!--
* end-user-doc -->
* @param value the new value of the '<em>Raw Bindable</em>' reference.
* @see #getRawBindable()
* @generated
*/
void setRawBindable(UiRawBindable value);
/**
* Returns the value of the '<em><b>Raw Bindable Path</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Raw Bindable Path</em>' containment reference
* isn't clear, there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Raw Bindable Path</em>' containment reference.
* @see #setRawBindablePath(UiRawBindablePathSegment)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiTypedBindableRawType_RawBindablePath()
* @model containment="true" resolveProxies="true"
* @generated
*/
UiRawBindablePathSegment getRawBindablePath();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiTypedBindableRawType#getRawBindablePath <em>Raw Bindable Path</em>}' containment reference.
* <!-- begin-user-doc
* --> <!-- end-user-doc -->
* @param value the new value of the '<em>Raw Bindable Path</em>' containment reference.
* @see #getRawBindablePath()
* @generated
*/
void setRawBindablePath(UiRawBindablePathSegment value);
/**
* Returns the path of the element by concating the segments.
* @return
*/
String toPathString();
/**
* Returns the last bindable in the path.
* @return
*/
UiRawBindable getLastBindableInPath();
} // UiTypedBindableRawType