blob: 2f55ce8bb4eb7cd12b50757aa0772a9a7fd6a441 [file] [log] [blame]
/**
* Copyright (c) 2010, 2011 Tasktop Technologies and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*/
package org.eclipse.mylyn.builds.core;
/**
* <!-- begin-user-doc --> A representation of the model object '<em><b>Test Element</b></em>'. <!-- end-user-doc -->
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.mylyn.builds.core.ITestElement#getLabel <em>Label</em>}</li>
* <li>{@link org.eclipse.mylyn.builds.core.ITestElement#getDuration <em>Duration</em>}</li>
* <li>{@link org.eclipse.mylyn.builds.core.ITestElement#getErrorOutput <em>Error Output</em>}</li>
* <li>{@link org.eclipse.mylyn.builds.core.ITestElement#getOutput <em>Output</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public interface ITestElement {
/**
* Returns the value of the '<em><b>Label</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Label</em>' attribute isn't clear, there really should be more of a description
* here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Label</em>' attribute.
* @see #setLabel(String)
* @generated
*/
String getLabel();
/**
* Sets the value of the '{@link org.eclipse.mylyn.builds.core.ITestElement#getLabel <em>Label</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Label</em>' attribute.
* @see #getLabel()
* @generated
*/
void setLabel(String value);
/**
* Returns the value of the '<em><b>Duration</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Duration</em>' attribute isn't clear, there really should be more of a description
* here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Duration</em>' attribute.
* @see #setDuration(long)
* @generated
*/
long getDuration();
/**
* Sets the value of the '{@link org.eclipse.mylyn.builds.core.ITestElement#getDuration <em>Duration</em>}'
* attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Duration</em>' attribute.
* @see #getDuration()
* @generated
*/
void setDuration(long value);
/**
* Returns the value of the '<em><b>Error Output</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Error Output</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 Output</em>' attribute.
* @see #setErrorOutput(String)
* @generated
*/
String getErrorOutput();
/**
* Sets the value of the '{@link org.eclipse.mylyn.builds.core.ITestElement#getErrorOutput <em>Error Output</em>}'
* attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Error Output</em>' attribute.
* @see #getErrorOutput()
* @generated
*/
void setErrorOutput(String value);
/**
* Returns the value of the '<em><b>Output</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Output</em>' attribute isn't clear, there really should be more of a description
* here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Output</em>' attribute.
* @see #setOutput(String)
* @generated
*/
String getOutput();
/**
* Sets the value of the '{@link org.eclipse.mylyn.builds.core.ITestElement#getOutput <em>Output</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Output</em>' attribute.
* @see #getOutput()
* @generated
*/
void setOutput(String value);
} // ITestElement