blob: 0c8cad5773442328deb23cad9db407f0a94e45d8 [file] [log] [blame]
/*******************************************************************************
* Copyright 2011 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* All rights reserved. This program and the accompanying materials
* are made available under the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
******************************************************************************/
package org.eclipse.emf.emfstore.client.test.model.rationale;
import org.eclipse.emf.emfstore.client.test.model.UnicaseModelElement;
import org.eclipse.emf.emfstore.common.model.NonDomainElement;
/**
* <!-- begin-user-doc --> A representation of the model object '<em><b>Assessment</b></em>'. <!-- end-user-doc -->
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.emf.emfstore.client.test.model.rationale.Assessment#getProposal <em>Proposal</em>}</li>
* <li>{@link org.eclipse.emf.emfstore.client.test.model.rationale.Assessment#getCriterion <em>Criterion</em>}</li>
* <li>{@link org.eclipse.emf.emfstore.client.test.model.rationale.Assessment#getValue <em>Value</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.emf.emfstore.client.test.model.rationale.RationalePackage#getAssessment()
* @model
* @generated
*/
public interface Assessment extends UnicaseModelElement, NonDomainElement {
/**
* Returns the value of the '<em><b>Proposal</b></em>' container reference. It is bidirectional and its opposite is
* '{@link org.eclipse.emf.emfstore.client.test.model.rationale.Proposal#getAssessments <em>Assessments</em>}'. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>Proposal</em>' container reference isn't clear, there really should be more of a
* description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Proposal</em>' container reference.
* @see #setProposal(Proposal)
* @see org.eclipse.emf.emfstore.client.test.model.rationale.RationalePackage#getAssessment_Proposal()
* @see org.eclipse.emf.emfstore.client.test.model.rationale.Proposal#getAssessments
* @model opposite="assessments" transient="false"
* @generated
*/
Proposal getProposal();
/**
* Sets the value of the '{@link org.eclipse.emf.emfstore.client.test.model.rationale.Assessment#getProposal
* <em>Proposal</em>}' container reference. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value the new value of the '<em>Proposal</em>' container reference.
* @see #getProposal()
* @generated
*/
void setProposal(Proposal value);
/**
* Returns the value of the '<em><b>Criterion</b></em>' reference. It is bidirectional and its opposite is '
* {@link org.eclipse.emf.emfstore.client.test.model.rationale.Criterion#getAssessments <em>Assessments</em>}'. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>Criterion</em>' reference isn't clear, there really should be more of a description
* here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Criterion</em>' reference.
* @see #setCriterion(Criterion)
* @see org.eclipse.emf.emfstore.client.test.model.rationale.RationalePackage#getAssessment_Criterion()
* @see org.eclipse.emf.emfstore.client.test.model.rationale.Criterion#getAssessments
* @model opposite="assessments"
* @generated
*/
Criterion getCriterion();
/**
* Sets the value of the '{@link org.eclipse.emf.emfstore.client.test.model.rationale.Assessment#getCriterion
* <em>Criterion</em>}' reference. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value the new value of the '<em>Criterion</em>' reference.
* @see #getCriterion()
* @generated
*/
void setCriterion(Criterion value);
/**
* Returns the value of the '<em><b>Value</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value</em>' attribute isn't clear, there really should be more of a description
* here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Value</em>' attribute.
* @see #setValue(int)
* @see org.eclipse.emf.emfstore.client.test.model.rationale.RationalePackage#getAssessment_Value()
* @model
* @generated
*/
int getValue();
/**
* Sets the value of the '{@link org.eclipse.emf.emfstore.client.test.model.rationale.Assessment#getValue
* <em>Value</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value the new value of the '<em>Value</em>' attribute.
* @see #getValue()
* @generated
*/
void setValue(int value);
} // Assessment