| /******************************************************************************* |
| * Copyright (c) 2016 Willink Transformations 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: |
| * E.D.Willink - initial API and implementation |
| *******************************************************************************/ |
| /** |
| */ |
| package example4.kiamaas; |
| |
| import org.eclipse.emf.ecore.EObject; |
| |
| /** |
| * <!-- begin-user-doc --> |
| * A representation of the model object '<em><b>Node</b></em>'. |
| * <!-- end-user-doc --> |
| * |
| * <p> |
| * The following features are supported: |
| * </p> |
| * <ul> |
| * <li>{@link example4.kiamaas.Node#getHeight <em>Height</em>}</li> |
| * <li>{@link example4.kiamaas.Node#getDepth <em>Depth</em>}</li> |
| * </ul> |
| * |
| * @see example4.kiamaas.KiamaasPackage#getNode() |
| * @model abstract="true" |
| * @generated |
| */ |
| public interface Node extends EObject { |
| /** |
| * Returns the value of the '<em><b>Height</b></em>' attribute. |
| * <!-- begin-user-doc --> |
| * <p> |
| * If the meaning of the '<em>Height</em>' attribute isn't clear, |
| * there really should be more of a description here... |
| * </p> |
| * <!-- end-user-doc --> |
| * @return the value of the '<em>Height</em>' attribute. |
| * @see #setHeight(Integer) |
| * @see example4.kiamaas.KiamaasPackage#getNode_Height() |
| * @model |
| * @generated |
| */ |
| Integer getHeight(); |
| |
| /** |
| * Sets the value of the '{@link example4.kiamaas.Node#getHeight <em>Height</em>}' attribute. |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @param value the new value of the '<em>Height</em>' attribute. |
| * @see #getHeight() |
| * @generated |
| */ |
| void setHeight(Integer value); |
| |
| /** |
| * Returns the value of the '<em><b>Depth</b></em>' attribute. |
| * <!-- begin-user-doc --> |
| * <p> |
| * If the meaning of the '<em>Depth</em>' attribute isn't clear, |
| * there really should be more of a description here... |
| * </p> |
| * <!-- end-user-doc --> |
| * @return the value of the '<em>Depth</em>' attribute. |
| * @see #setDepth(Integer) |
| * @see example4.kiamaas.KiamaasPackage#getNode_Depth() |
| * @model |
| * @generated |
| */ |
| Integer getDepth(); |
| |
| /** |
| * Sets the value of the '{@link example4.kiamaas.Node#getDepth <em>Depth</em>}' attribute. |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @param value the new value of the '<em>Depth</em>' attribute. |
| * @see #getDepth() |
| * @generated |
| */ |
| void setDepth(Integer value); |
| |
| } // Node |