/***************************************************************************** * Copyright (c) 2011 CEA LIST. * * * 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: * CEA LIST - Initial API and implementation * *****************************************************************************/ package org.eclipse.papyrus.uml.alf.alf; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Classification Clause</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.papyrus.uml.alf.alf.ClassificationClause#getClassifyFromClause <em>Classify From Clause</em>}</li> * <li>{@link org.eclipse.papyrus.uml.alf.alf.ClassificationClause#getClassifyToClause <em>Classify To Clause</em>}</li> * <li>{@link org.eclipse.papyrus.uml.alf.alf.ClassificationClause#getReclassyAllClause <em>Reclassy All Clause</em>}</li> * </ul> * </p> * * @see org.eclipse.papyrus.uml.alf.alf.AlfPackage#getClassificationClause() * @model * @generated */ public interface ClassificationClause extends EObject { /** * Returns the value of the '<em><b>Classify From Clause</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Classify From Clause</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Classify From Clause</em>' containment reference. * @see #setClassifyFromClause(ClassificationFromClause) * @see org.eclipse.papyrus.uml.alf.alf.AlfPackage#getClassificationClause_ClassifyFromClause() * @model containment="true" * @generated */ ClassificationFromClause getClassifyFromClause(); /** * Sets the value of the '{@link org.eclipse.papyrus.uml.alf.alf.ClassificationClause#getClassifyFromClause <em>Classify From Clause</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Classify From Clause</em>' containment reference. * @see #getClassifyFromClause() * @generated */ void setClassifyFromClause(ClassificationFromClause value); /** * Returns the value of the '<em><b>Classify To Clause</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Classify To Clause</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Classify To Clause</em>' containment reference. * @see #setClassifyToClause(ClassificationToClause) * @see org.eclipse.papyrus.uml.alf.alf.AlfPackage#getClassificationClause_ClassifyToClause() * @model containment="true" * @generated */ ClassificationToClause getClassifyToClause(); /** * Sets the value of the '{@link org.eclipse.papyrus.uml.alf.alf.ClassificationClause#getClassifyToClause <em>Classify To Clause</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Classify To Clause</em>' containment reference. * @see #getClassifyToClause() * @generated */ void setClassifyToClause(ClassificationToClause value); /** * Returns the value of the '<em><b>Reclassy All Clause</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Reclassy All Clause</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Reclassy All Clause</em>' containment reference. * @see #setReclassyAllClause(ReclassifyAllClause) * @see org.eclipse.papyrus.uml.alf.alf.AlfPackage#getClassificationClause_ReclassyAllClause() * @model containment="true" * @generated */ ReclassifyAllClause getReclassyAllClause(); /** * Sets the value of the '{@link org.eclipse.papyrus.uml.alf.alf.ClassificationClause#getReclassyAllClause <em>Reclassy All Clause</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Reclassy All Clause</em>' containment reference. * @see #getReclassyAllClause() * @generated */ void setReclassyAllClause(ReclassifyAllClause value); } // ClassificationClause