/** * Copyright (c) 2013 MEDEVIT <office@medevit.at>. * 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: * MEDEVIT <office@medevit.at> - initial API and implementation */ package ch.elexis.core.model; import java.util.List; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>ISticker</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link ch.elexis.core.model.ISticker#getBackground <em>Background</em>}</li> * <li>{@link ch.elexis.core.model.ISticker#getForeground <em>Foreground</em>}</li> * <li>{@link ch.elexis.core.model.ISticker#isVisible <em>Visible</em>}</li> * </ul> * * @see ch.elexis.core.model.ModelPackage#getISticker() * @model interface="true" abstract="true" superTypes="ch.elexis.core.types.Comparable<ch.elexis.core.model.ISticker>" * @generated */ public interface ISticker extends Comparable<ISticker> { /** * Returns the value of the '<em><b>Background</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Background</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Background</em>' attribute. * @see #setBackground(String) * @see ch.elexis.core.model.ModelPackage#getISticker_Background() * @model * @generated */ String getBackground(); /** * Sets the value of the '{@link ch.elexis.core.model.ISticker#getBackground <em>Background</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Background</em>' attribute. * @see #getBackground() * @generated */ void setBackground(String value); /** * Returns the value of the '<em><b>Foreground</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Foreground</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Foreground</em>' attribute. * @see #setForeground(String) * @see ch.elexis.core.model.ModelPackage#getISticker_Foreground() * @model * @generated */ String getForeground(); /** * Sets the value of the '{@link ch.elexis.core.model.ISticker#getForeground <em>Foreground</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Foreground</em>' attribute. * @see #getForeground() * @generated */ void setForeground(String value); /** * Returns the value of the '<em><b>Visible</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Visible</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Visible</em>' attribute. * @see #setVisible(boolean) * @see ch.elexis.core.model.ModelPackage#getISticker_Visible() * @model * @generated */ boolean isVisible(); /** * Sets the value of the '{@link ch.elexis.core.model.ISticker#isVisible <em>Visible</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Visible</em>' attribute. * @see #isVisible() * @generated */ void setVisible(boolean value); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model kind="operation" * @generated */ String getId(); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model kind="operation" * @generated */ String getLabel(); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model kind="operation" * @generated */ int getWert(); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model * @generated */ void setWert(int w); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model * @generated */ boolean delete(); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model * @generated */ void setClassForSticker(Class<?> clazz); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model * @generated */ void removeClassForSticker(Class<?> clazz); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model kind="operation" * @generated */ List<String> getClassesForSticker(); } // ISticker