blob: c7e5666359f318fb35af540eac6a5293b66cc3eb [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Ui Layout</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiLayout#isAutowire <em>Autowire</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiLayout#getAutoWireSource <em>Auto Wire Source</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiLayout#getNumberColumns <em>Number Columns</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiLayout()
* @model interface="true" abstract="true"
* @generated
*/
public interface UiLayout extends UiEmbeddable {
/**
* Returns the value of the '<em><b>Autowire</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Autowire</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Autowire</em>' attribute.
* @see #setAutowire(boolean)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiLayout_Autowire()
* @model
* @generated
*/
boolean isAutowire();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiLayout#isAutowire <em>Autowire</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Autowire</em>' attribute.
* @see #isAutowire()
* @generated
*/
void setAutowire(boolean value);
/**
* Returns the value of the '<em><b>Auto Wire Source</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Auto Wire Source</em>' containment reference isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Auto Wire Source</em>' containment reference.
* @see #setAutoWireSource(UiBindingExpression)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiLayout_AutoWireSource()
* @model containment="true" resolveProxies="true"
* @generated
*/
UiBindingExpression getAutoWireSource();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiLayout#getAutoWireSource <em>Auto Wire Source</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Auto Wire Source</em>' containment reference.
* @see #getAutoWireSource()
* @generated
*/
void setAutoWireSource(UiBindingExpression value);
/**
* Returns the value of the '<em><b>Number Columns</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Number Columns</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Number Columns</em>' attribute.
* @see #setNumberColumns(int)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiLayout_NumberColumns()
* @model
* @generated
*/
int getNumberColumns();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiLayout#getNumberColumns <em>Number Columns</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Number Columns</em>' attribute.
* @see #getNumberColumns()
* @generated
*/
void setNumberColumns(int value);
} // UiLayout