blob: 0c077bc0ee3536f3cb5fe33cbabdba8b0fdfdc9b [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.core.extension.model.extension;
import org.eclipse.osbp.ecview.core.common.model.core.YEmbeddable;
import org.eclipse.osbp.ecview.core.common.model.core.YFocusable;
import org.eclipse.osbp.ecview.core.common.model.core.YLayout;
import org.eclipse.osbp.ecview.core.common.model.datatypes.YDatadescription;
// TODO: Auto-generated Javadoc
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>YPanel</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.core.extension.model.extension.YPanel#getDatadescription <em>Datadescription</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.core.extension.model.extension.YPanel#getFirstContent <em>First Content</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.core.extension.model.extension.YPanel#getSecondContent <em>Second Content</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYPanel()
* @model
* @generated
*/
public interface YPanel extends YLayout, YFocusable {
/**
* Returns the value of the '<em><b>Datadescription</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Datadescription</em>' reference isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Datadescription</em>' reference.
* @see #setDatadescription(YDatadescription)
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYPanel_Datadescription()
* @model
* @generated
*/
YDatadescription getDatadescription();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.extension.model.extension.YPanel#getDatadescription <em>Datadescription</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Datadescription</em>' reference.
* @see #getDatadescription()
* @generated
*/
void setDatadescription(YDatadescription value);
/**
* Returns the value of the '<em><b>First Content</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>First Content</em>' reference isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>First Content</em>' reference.
* @see #setFirstContent(YEmbeddable)
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYPanel_FirstContent()
* @model
* @generated
*/
YEmbeddable getFirstContent();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.extension.model.extension.YPanel#getFirstContent <em>First Content</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>First Content</em>' reference.
* @see #getFirstContent()
* @generated
*/
void setFirstContent(YEmbeddable value);
/**
* Returns the value of the '<em><b>Second Content</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Second Content</em>' reference isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Second Content</em>' reference.
* @see #setSecondContent(YEmbeddable)
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYPanel_SecondContent()
* @model
* @generated
*/
YEmbeddable getSecondContent();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.extension.model.extension.YPanel#getSecondContent <em>Second Content</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Second Content</em>' reference.
* @see #getSecondContent()
* @generated
*/
void setSecondContent(YEmbeddable value);
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->.
*
* @param element
* the element
* @return the cell style
* @model
* @generated
*/
YHorizontalLayoutCellStyle getCellStyle(YEmbeddable element);
} // YPanel