blob: bb50b8fa7556795da62bcee650159b29e7461e13 [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;
import org.eclipse.xtext.common.types.JvmField;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Ui Nested Field</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiNestedField#getPath <em>Path</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiNestedField#getField <em>Field</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiNestedField()
* @model
* @generated
*/
public interface UiNestedField extends UiNamedElement {
/**
* Returns the value of the '<em><b>Path</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Path</em>' containment reference.
* @see #setPath(UiPathSegment)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiNestedField_Path()
* @model containment="true" resolveProxies="true"
* @generated
*/
UiPathSegment getPath();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiNestedField#getPath <em>Path</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Path</em>' containment reference.
* @see #getPath()
* @generated
*/
void setPath(UiPathSegment value);
/**
* Returns the value of the '<em><b>Field</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Field</em>' reference isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Field</em>' reference.
* @see #setField(JvmField)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiNestedField_Field()
* @model
* @generated
*/
JvmField getField();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiNestedField#getField <em>Field</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Field</em>' reference.
* @see #getField()
* @generated
*/
void setField(JvmField value);
} // UiNestedField