/** * Copyright (c) 2013 CEA LIST * * 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: * CEA LIST - Initial API and implementation * */ package org.eclipse.papyrus.C_Cpp; import org.eclipse.emf.ecore.EObject; import org.eclipse.uml2.uml.Operation; /** * * A representation of the model object 'Virtual'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.C_Cpp.C_CppPackage#getVirtual() * @model * @generated */ public interface Virtual extends EObject { /** * Returns the value of the 'Base operation' reference. * *

* If the meaning of the 'Base operation' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Base operation' reference. * @see #setBase_operation(Operation) * @see org.eclipse.papyrus.C_Cpp.C_CppPackage#getVirtual_Base_operation() * @model required="true" ordered="false" * @generated */ Operation getBase_operation(); /** * Sets the value of the '{@link org.eclipse.papyrus.C_Cpp.Virtual#getBase_operation Base operation}' reference. * * * @param value the new value of the 'Base operation' reference. * @see #getBase_operation() * @generated */ void setBase_operation(Operation value); } // Virtual