Skip to content
Snippets Groups Projects
Commit ecc8b41d authored by Simon Eismann's avatar Simon Eismann
Browse files

leftovers from last push

parent 2a1ad515
No related branches found
No related tags found
No related merge requests found
......@@ -146,6 +146,15 @@ public interface DomainFactory extends EFactory {
*/
ConfidenceInterval createConfidenceInterval();
/**
* Returns a new object of class '<em>Result List</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Result List</em>'.
* @generated
*/
<R extends Result> ResultList<R> createResultList();
/**
* Returns a new object of class '<em>Result List</em>'. <!-- begin-user-doc
* --> <!-- end-user-doc -->
......
......@@ -37,6 +37,7 @@ import org.eclipse.emf.ecore.EPackage;
import org.eclipse.emf.ecore.impl.EFactoryImpl;
import org.eclipse.emf.ecore.plugin.EcorePlugin;
import tools.descartes.dql.models.mapping.domain.*;
import tools.descartes.dql.models.mapping.domain.Aggregate;
import tools.descartes.dql.models.mapping.domain.ConfidenceInterval;
import tools.descartes.dql.models.mapping.domain.ContinuousSeriesResult;
......@@ -91,7 +92,6 @@ public class DomainFactoryImpl extends EFactoryImpl implements DomainFactory {
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
......@@ -108,8 +108,7 @@ public class DomainFactoryImpl extends EFactoryImpl implements DomainFactory {
case DomainPackage.CONTINUOUS_SERIES_RESULT: return createContinuousSeriesResult();
case DomainPackage.DISCRETE_SERIES_RESULT: return createDiscreteSeriesResult();
case DomainPackage.CONFIDENCE_INTERVAL: return createConfidenceInterval();
case DomainPackage.RESULT_LIST:
return createResultList();
case DomainPackage.RESULT_LIST: return createResultList();
default:
throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment