blob: 509e4a0cb2c4a1ce8ecc78e13818b211340dc04d [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - 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:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
*/
package org.eclipse.osbp.ecview.core.extension.model.extension;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.osbp.ecview.core.common.model.core.YAlignment;
import org.eclipse.osbp.ecview.core.common.model.core.YEmbeddable;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>YCss Layout Cell Style</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.ecview.core.extension.model.extension.YCssLayoutCellStyle#getTarget <em>Target</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.core.extension.model.extension.YCssLayoutCellStyle#getAlignment <em>Alignment</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYCssLayoutCellStyle()
* @model
* @generated
*/
public interface YCssLayoutCellStyle extends EObject {
/**
* Returns the value of the '<em><b>Target</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Target</em>' reference isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Target</em>' reference.
* @see #setTarget(YEmbeddable)
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYCssLayoutCellStyle_Target()
* @model required="true"
* @generated
*/
YEmbeddable getTarget();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.extension.model.extension.YCssLayoutCellStyle#getTarget <em>Target</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Target</em>' reference.
* @see #getTarget()
* @generated
*/
void setTarget(YEmbeddable value);
/**
* Returns the value of the '<em><b>Alignment</b></em>' attribute.
* The default value is <code>"UNDEFINED"</code>.
* The literals are from the enumeration {@link org.eclipse.osbp.ecview.core.common.model.core.YAlignment}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The alignment of the ui element relative to its css layout cell.
* <!-- end-model-doc -->
* @return the value of the '<em>Alignment</em>' attribute.
* @see org.eclipse.osbp.ecview.core.common.model.core.YAlignment
* @see #setAlignment(YAlignment)
* @see org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelPackage#getYCssLayoutCellStyle_Alignment()
* @model default="UNDEFINED"
* @generated
*/
YAlignment getAlignment();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.core.extension.model.extension.YCssLayoutCellStyle#getAlignment <em>Alignment</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Alignment</em>' attribute.
* @see org.eclipse.osbp.ecview.core.common.model.core.YAlignment
* @see #getAlignment()
* @generated
*/
void setAlignment(YAlignment value);
} // YCssLayoutCellStyle