blob: 27bae8f5aa3795c9443d3c8f1e7332d9aaafba50 [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>Health Report</b></em>'. <!-- end-user-doc -->
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.mylyn.builds.core.IHealthReport#getHealth <em>Health</em>}</li>
* <li>{@link org.eclipse.mylyn.builds.core.IHealthReport#getDescription <em>Description</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public interface IHealthReport {
/**
* Returns the value of the '<em><b>Health</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Health</em>' attribute isn't clear, there really should be more of a description
* here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Health</em>' attribute.
* @see #setHealth(int)
* @generated
*/
int getHealth();
/**
* Sets the value of the '{@link org.eclipse.mylyn.builds.core.IHealthReport#getHealth <em>Health</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Health</em>' attribute.
* @see #getHealth()
* @generated
*/
void setHealth(int value);
/**
* Returns the value of the '<em><b>Description</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Description</em>' attribute isn't clear, there really should be more of a description
* here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Description</em>' attribute.
* @see #setDescription(String)
* @generated
*/
String getDescription();
/**
* Sets the value of the '{@link org.eclipse.mylyn.builds.core.IHealthReport#getDescription <em>Description</em>}'
* attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Description</em>' attribute.
* @see #getDescription()
* @generated
*/
void setDescription(String value);
} // IHealthReport