/** * Copyright (c) 2015, 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 org.eclipse.qvtd.xtext.qvtcore.tests.hsv2hsl.HSLTree; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'HLS Node'. * * *

* The following features are supported: *

* * * @see org.eclipse.qvtd.xtext.qvtcore.tests.hsv2hsl.HSLTree.HSLTreePackage#getHSLNode() * @model * @generated */ public interface HSLNode extends EObject { /** * Returns the value of the 'Parent' container reference. * It is bidirectional and its opposite is '{@link org.eclipse.qvtd.xtext.qvtcore.tests.hsv2hsl.HSLTree.HSLNode#getChildren Children}'. * *

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

* * @return the value of the 'Parent' container reference. * @see #setParent(HSLNode) * @see org.eclipse.qvtd.xtext.qvtcore.tests.hsv2hsl.HSLTree.HSLTreePackage#getHSLNode_Parent() * @see org.eclipse.qvtd.xtext.qvtcore.tests.hsv2hsl.HSLTree.HSLNode#getChildren * @model opposite="children" transient="false" * @generated */ HSLNode getParent(); /** * Sets the value of the '{@link org.eclipse.qvtd.xtext.qvtcore.tests.hsv2hsl.HSLTree.HSLNode#getParent Parent}' container reference. * * * @param value the new value of the 'Parent' container reference. * @see #getParent() * @generated */ void setParent(HSLNode value); /** * Returns the value of the 'Children' containment reference list. * The list contents are of type {@link org.eclipse.qvtd.xtext.qvtcore.tests.hsv2hsl.HSLTree.HSLNode}. * It is bidirectional and its opposite is '{@link org.eclipse.qvtd.xtext.qvtcore.tests.hsv2hsl.HSLTree.HSLNode#getParent Parent}'. * *

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

* * @return the value of the 'Children' containment reference list. * @see org.eclipse.qvtd.xtext.qvtcore.tests.hsv2hsl.HSLTree.HSLTreePackage#getHSLNode_Children() * @see org.eclipse.qvtd.xtext.qvtcore.tests.hsv2hsl.HSLTree.HSLNode#getParent * @model opposite="parent" containment="true" * @generated */ EList getChildren(); /** * Returns the value of the 'Hsl' attribute. * The default value is "1". * *

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

* * @return the value of the 'Hsl' attribute. * @see #setHsl(String) * @see org.eclipse.qvtd.xtext.qvtcore.tests.hsv2hsl.HSLTree.HSLTreePackage#getHSLNode_Hsl() * @model default="1" dataType="org.eclipse.qvtd.xtext.qvtcore.tests.hsv2hsl.HSLTree.HSL" required="true" * @generated */ String getHsl(); /** * Sets the value of the '{@link org.eclipse.qvtd.xtext.qvtcore.tests.hsv2hsl.HSLTree.HSLNode#getHsl Hsl}' attribute. * * * @param value the new value of the 'Hsl' attribute. * @see #getHsl() * @generated */ void setHsl(String value); /** * Returns the value of the 'Name' attribute. * *

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

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.qvtd.xtext.qvtcore.tests.hsv2hsl.HSLTree.HSLTreePackage#getHSLNode_Name() * @model required="true" * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.qvtd.xtext.qvtcore.tests.hsv2hsl.HSLTree.HSLNode#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // HLSNode