blob: 8d54e906298afd8db3abfd9601fafe1d33297c3c [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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.semantic.uimodel;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Ui Embeddable</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiEmbeddable#getBindings <em>Bindings</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiEmbeddable#isReadonly <em>Readonly</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiEmbeddable#isInvisible <em>Invisible</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiEmbeddable#getStyles <em>Styles</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiEmbeddable()
* @model interface="true" abstract="true"
* @generated
*/
public interface UiEmbeddable extends UiVisibilityProcessable, UiRawBindable, UiI18nInfoable {
/**
* Returns the value of the '<em><b>Bindings</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.ecview.semantic.uimodel.UiBinding}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Bindings</em>' containment reference list isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Bindings</em>' containment reference list.
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiEmbeddable_Bindings()
* @model containment="true" resolveProxies="true"
* @generated
*/
EList<UiBinding> getBindings();
/**
* Returns the value of the '<em><b>Readonly</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Readonly</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Readonly</em>' attribute.
* @see #setReadonly(boolean)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiEmbeddable_Readonly()
* @model
* @generated
*/
boolean isReadonly();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiEmbeddable#isReadonly <em>Readonly</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Readonly</em>' attribute.
* @see #isReadonly()
* @generated
*/
void setReadonly(boolean value);
/**
* Returns the value of the '<em><b>Invisible</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Invisible</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Invisible</em>' attribute.
* @see #setInvisible(boolean)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiEmbeddable_Invisible()
* @model
* @generated
*/
boolean isInvisible();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiEmbeddable#isInvisible <em>Invisible</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Invisible</em>' attribute.
* @see #isInvisible()
* @generated
*/
void setInvisible(boolean value);
/**
* Returns the value of the '<em><b>Styles</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Styles</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Styles</em>' attribute.
* @see #setStyles(String)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiEmbeddable_Styles()
* @model
* @generated
*/
String getStyles();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiEmbeddable#getStyles <em>Styles</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Styles</em>' attribute.
* @see #getStyles()
* @generated
*/
void setStyles(String value);
} // UiEmbeddable