/******************************************************************************* * Copyright (c) 2007 Borland Software Corporation 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: * Borland Software Corporation - initial API and implementation *******************************************************************************/ package rdb; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Element'. * * *

* The following features are supported: *

*

* * @see rdb.RdbPackage#getElement() * @model * @generated */ public interface Element extends EObject { /** * Returns the value of the 'Parent' reference. * *

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

* * @return the value of the 'Parent' reference. * @see #setParent(Element) * @see rdb.RdbPackage#getElement_Parent() * @model * @generated */ Element getParent(); /** * Sets the value of the '{@link rdb.Element#getParent Parent}' reference. * * * @param value the new value of the 'Parent' reference. * @see #getParent() * @generated */ void setParent(Element value); } // Element