/******************************************************************************* * Copyright (c) 2011-2013 University of Mannheim: Chair for Software Engineering * 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: * Ralph Gerbig - initial API and implementation and initial documentation *******************************************************************************/ package de.uni_mannheim.informatik.swt.models.plm.PLM; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Equality</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link de.uni_mannheim.informatik.swt.models.plm.PLM.Equality#getEqual <em>Equal</em>}</li> * <li>{@link de.uni_mannheim.informatik.swt.models.plm.PLM.Equality#getTrue <em>True</em>}</li> * </ul> * </p> * * @see de.uni_mannheim.informatik.swt.models.plm.PLM.PLMPackage#getEquality() * @model * @generated */ public interface Equality extends SetRelationship { /** * Returns the value of the '<em><b>Equal</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Equal</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Equal</em>' reference. * @see #setEqual(Clabject) * @see de.uni_mannheim.informatik.swt.models.plm.PLM.PLMPackage#getEquality_Equal() * @model required="true" * @generated */ Clabject getEqual(); /** * Sets the value of the '{@link de.uni_mannheim.informatik.swt.models.plm.PLM.Equality#getEqual <em>Equal</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Equal</em>' reference. * @see #getEqual() * @generated */ void setEqual(Clabject value); /** * Returns the value of the '<em><b>True</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * if true the two clabjects are "two names for the same thing", if false they will spawn the same offspring * <!-- end-model-doc --> * @return the value of the '<em>True</em>' attribute. * @see #setTrue(Boolean) * @see de.uni_mannheim.informatik.swt.models.plm.PLM.PLMPackage#getEquality_True() * @model * @generated */ Boolean getTrue(); /** * Sets the value of the '{@link de.uni_mannheim.informatik.swt.models.plm.PLM.Equality#getTrue <em>True</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>True</em>' attribute. * @see #getTrue() * @generated */ void setTrue(Boolean value); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * returns the target clabject of the directed relationship * <!-- end-model-doc --> * @model kind="operation" required="true" ordered="false" * annotation="http://www.eclipse.org/emf/2002/Ecore/OCL body='self.equal'" * @generated */ Clabject getTarget(); } // Equality