/** */ package hu.bme.mit.inf.dslreasoner.logic.model.logicresult; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Statistics'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logicresult.LogicresultPackage#getStatistics() * @model * @generated */ public interface Statistics extends EObject { /** * Returns the value of the 'Entries' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.logic.model.logicresult.StatisticEntry}. * *

* If the meaning of the 'Entries' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Entries' containment reference list. * @see hu.bme.mit.inf.dslreasoner.logic.model.logicresult.LogicresultPackage#getStatistics_Entries() * @model containment="true" * @generated */ EList getEntries(); /** * Returns the value of the 'Transformation Time' attribute. * The default value is "-1". * *

* If the meaning of the 'Transformation Time' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Transformation Time' attribute. * @see #setTransformationTime(int) * @see hu.bme.mit.inf.dslreasoner.logic.model.logicresult.LogicresultPackage#getStatistics_TransformationTime() * @model default="-1" required="true" * @generated */ int getTransformationTime(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logicresult.Statistics#getTransformationTime Transformation Time}' attribute. * * * @param value the new value of the 'Transformation Time' attribute. * @see #getTransformationTime() * @generated */ void setTransformationTime(int value); /** * Returns the value of the 'Solver Time' attribute. * The default value is "-1". * *

* If the meaning of the 'Solver Time' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Solver Time' attribute. * @see #setSolverTime(int) * @see hu.bme.mit.inf.dslreasoner.logic.model.logicresult.LogicresultPackage#getStatistics_SolverTime() * @model default="-1" required="true" * @generated */ int getSolverTime(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logicresult.Statistics#getSolverTime Solver Time}' attribute. * * * @param value the new value of the 'Solver Time' attribute. * @see #getSolverTime() * @generated */ void setSolverTime(int value); /** * Returns the value of the 'Solver Memory' attribute. * The default value is "-1". * *

* If the meaning of the 'Solver Memory' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Solver Memory' attribute. * @see #setSolverMemory(int) * @see hu.bme.mit.inf.dslreasoner.logic.model.logicresult.LogicresultPackage#getStatistics_SolverMemory() * @model default="-1" * @generated */ int getSolverMemory(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logicresult.Statistics#getSolverMemory Solver Memory}' attribute. * * * @param value the new value of the 'Solver Memory' attribute. * @see #getSolverMemory() * @generated */ void setSolverMemory(int value); } // Statistics