/** */ package org.jboss.tools.windup.windup; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; import org.jboss.windup.tooling.ExecutionResults; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Result</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.jboss.tools.windup.windup.WindupResult#getExecutionResults <em>Execution Results</em>}</li> * <li>{@link org.jboss.tools.windup.windup.WindupResult#getIssues <em>Issues</em>}</li> * </ul> * * @see org.jboss.tools.windup.windup.WindupPackage#getWindupResult() * @model * @generated */ public interface WindupResult extends EObject { /** * Returns the value of the '<em><b>Execution Results</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Execution Results</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Execution Results</em>' attribute. * @see #setExecutionResults(ExecutionResults) * @see org.jboss.tools.windup.windup.WindupPackage#getWindupResult_ExecutionResults() * @model dataType="org.jboss.tools.windup.windup.WindupExecutionResults" transient="true" * @generated */ ExecutionResults getExecutionResults(); /** * Sets the value of the '{@link org.jboss.tools.windup.windup.WindupResult#getExecutionResults <em>Execution Results</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Execution Results</em>' attribute. * @see #getExecutionResults() * @generated */ void setExecutionResults(ExecutionResults value); /** * Returns the value of the '<em><b>Issues</b></em>' containment reference list. * The list contents are of type {@link org.jboss.tools.windup.windup.Issue}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Issues</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Issues</em>' containment reference list. * @see org.jboss.tools.windup.windup.WindupPackage#getWindupResult_Issues() * @model containment="true" resolveProxies="true" * @generated */ EList<Issue> getIssues(); } // WindupResult