/** * Copyright (c) 2012-2016 Marsha Chechik, Alessio Di Sandro, Michalis Famelis, * Rick Salay. * 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: * Alessio Di Sandro - Implementation. */ package edu.toronto.cs.se.mmint.mid; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Generic Element</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * The abstract element for generic operator definitions. * <!-- end-model-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link edu.toronto.cs.se.mmint.mid.GenericElement#isAbstract <em>Abstract</em>}</li> * </ul> * * @see edu.toronto.cs.se.mmint.mid.MIDPackage#getGenericElement() * @model abstract="true" * @generated */ public interface GenericElement extends ExtendibleElement { /** * Returns the value of the '<em><b>Abstract</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * True if the generic type can't be instanciated, false otherwise (instances: always false). * <!-- end-model-doc --> * @return the value of the '<em>Abstract</em>' attribute. * @see #setAbstract(boolean) * @see edu.toronto.cs.se.mmint.mid.MIDPackage#getGenericElement_Abstract() * @model required="true" * @generated */ boolean isAbstract(); /** * Sets the value of the '{@link edu.toronto.cs.se.mmint.mid.GenericElement#isAbstract <em>Abstract</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Abstract</em>' attribute. * @see #isAbstract() * @generated */ void setAbstract(boolean value); } // GenericElement