/** * Copyright (c) 2015 committers of YAKINDU and others. * 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: * committers of YAKINDU - initial API and implementation * */ package org.yakindu.sct.model.sgen; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Deprecatable Element</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.yakindu.sct.model.sgen.DeprecatableElement#isDeprecated <em>Deprecated</em>}</li> * <li>{@link org.yakindu.sct.model.sgen.DeprecatableElement#getComment <em>Comment</em>}</li> * </ul> * * @see org.yakindu.sct.model.sgen.SGenPackage#getDeprecatableElement() * @model * @generated */ public interface DeprecatableElement extends EObject { /** * Returns the value of the '<em><b>Deprecated</b></em>' attribute. * The default value is <code>"false"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Deprecated</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Deprecated</em>' attribute. * @see #setDeprecated(boolean) * @see org.yakindu.sct.model.sgen.SGenPackage#getDeprecatableElement_Deprecated() * @model default="false" required="true" * @generated */ boolean isDeprecated(); /** * Sets the value of the '{@link org.yakindu.sct.model.sgen.DeprecatableElement#isDeprecated <em>Deprecated</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Deprecated</em>' attribute. * @see #isDeprecated() * @generated */ void setDeprecated(boolean value); /** * Returns the value of the '<em><b>Comment</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Comment</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Comment</em>' attribute. * @see #setComment(String) * @see org.yakindu.sct.model.sgen.SGenPackage#getDeprecatableElement_Comment() * @model * @generated */ String getComment(); /** * Sets the value of the '{@link org.yakindu.sct.model.sgen.DeprecatableElement#getComment <em>Comment</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Comment</em>' attribute. * @see #getComment() * @generated */ void setComment(String value); } // DeprecatableElement