blob: 8c68100999284ffa1b448603080b126e5164bb2c [file] [log] [blame]
package org.eclipse.stem.analysis;
/*******************************************************************************
* Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018
* IBM Corporation, BfR, and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation and new features
* Bundesinstitut für Risikobewertung - Pajek Graph interface, new Veterinary Models
*******************************************************************************/
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Error Result</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.stem.analysis.ErrorResult#getErrorByTimeStep <em>Error By Time Step</em>}</li>
* <li>{@link org.eclipse.stem.analysis.ErrorResult#getError <em>Error</em>}</li>
* <li>{@link org.eclipse.stem.analysis.ErrorResult#getReferenceByTime <em>Reference By Time</em>}</li>
* <li>{@link org.eclipse.stem.analysis.ErrorResult#getModelByTime <em>Model By Time</em>}</li>
* <li>{@link org.eclipse.stem.analysis.ErrorResult#getValidationError <em>Validation Error</em>}</li>
* </ul>
*
* @see org.eclipse.stem.analysis.AnalysisPackage#getErrorResult()
* @model
* @generated
*/
public interface ErrorResult extends EObject {
/**
* Returns the value of the '<em><b>Error By Time Step</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Error By Time Step</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Error By Time Step</em>' attribute.
* @see #setErrorByTimeStep(EList)
* @see org.eclipse.stem.analysis.AnalysisPackage#getErrorResult_ErrorByTimeStep()
* @model many="false" transient="true"
* @generated
*/
EList<Double> getErrorByTimeStep();
/**
* Sets the value of the '{@link org.eclipse.stem.analysis.ErrorResult#getErrorByTimeStep <em>Error By Time Step</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Error By Time Step</em>' attribute.
* @see #getErrorByTimeStep()
* @generated
*/
void setErrorByTimeStep(EList<Double> value);
/**
* Returns the value of the '<em><b>Error</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Error</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Error</em>' attribute.
* @see #setError(double)
* @see org.eclipse.stem.analysis.AnalysisPackage#getErrorResult_Error()
* @model transient="true"
* @generated
*/
double getError();
/**
* Sets the value of the '{@link org.eclipse.stem.analysis.ErrorResult#getError <em>Error</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Error</em>' attribute.
* @see #getError()
* @generated
*/
void setError(double value);
/**
* Returns the value of the '<em><b>Reference By Time</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Reference By Time</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Reference By Time</em>' attribute.
* @see #setReferenceByTime(EList)
* @see org.eclipse.stem.analysis.AnalysisPackage#getErrorResult_ReferenceByTime()
* @model many="false" transient="true"
* @generated
*/
EList<Double> getReferenceByTime();
/**
* Sets the value of the '{@link org.eclipse.stem.analysis.ErrorResult#getReferenceByTime <em>Reference By Time</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Reference By Time</em>' attribute.
* @see #getReferenceByTime()
* @generated
*/
void setReferenceByTime(EList<Double> value);
/**
* Returns the value of the '<em><b>Model By Time</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Model By Time</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Model By Time</em>' attribute.
* @see #setModelByTime(EList)
* @see org.eclipse.stem.analysis.AnalysisPackage#getErrorResult_ModelByTime()
* @model many="false" transient="true"
* @generated
*/
EList<Double> getModelByTime();
/**
* Sets the value of the '{@link org.eclipse.stem.analysis.ErrorResult#getModelByTime <em>Model By Time</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Model By Time</em>' attribute.
* @see #getModelByTime()
* @generated
*/
void setModelByTime(EList<Double> value);
/**
* Returns the value of the '<em><b>Validation Error</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Validation Error</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Validation Error</em>' attribute.
* @see #setValidationError(double)
* @see org.eclipse.stem.analysis.AnalysisPackage#getErrorResult_ValidationError()
* @model
* @generated
*/
double getValidationError();
/**
* Sets the value of the '{@link org.eclipse.stem.analysis.ErrorResult#getValidationError <em>Validation Error</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Validation Error</em>' attribute.
* @see #getValidationError()
* @generated
*/
void setValidationError(double value);
public ErrorResult copy();
} // ErrorResult