/** * <copyright> * Copyright (c) 2010-2014 Henshin developers. 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 * </copyright> */ package org.eclipse.emf.henshin.model; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Unary Formula</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.emf.henshin.model.UnaryFormula#getChild <em>Child</em>}</li> * </ul> * </p> * * @see org.eclipse.emf.henshin.model.HenshinPackage#getUnaryFormula() * @model abstract="true" * @generated */ public interface UnaryFormula extends ModelElement, Formula { /** * Returns the value of the '<em><b>Child</b></em>' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the value of the '<em>Child</em>' containment reference. * @see #setChild(Formula) * @see org.eclipse.emf.henshin.model.HenshinPackage#getUnaryFormula_Child() * @model containment="true" required="true" * @generated */ Formula getChild(); /** * Sets the value of the '{@link org.eclipse.emf.henshin.model.UnaryFormula#getChild <em>Child</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Child</em>' containment reference. * @see #getChild() * @generated */ void setChild(Formula value); } // UnaryFormula