blob: 1add512b275b3783cf43137041b3a5aae397d359 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Xored Software Inc 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
* https://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.tesla.core.info;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* @model
*/
public interface AdvancedInformation extends EObject {
/**
* Returns the value of the '<em><b>Threads</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.rcptt.tesla.core.info.StackTraceEntry}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Threads</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>Threads</em>' containment reference list.
* @see org.eclipse.rcptt.tesla.core.info.InfoPackage#getAdvancedInformation_Threads()
* @model containment="true"
* @generated
*/
EList<StackTraceEntry> getThreads();
/**
* Returns the value of the '<em><b>Jobs</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.rcptt.tesla.core.info.JobEntry}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Jobs</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>Jobs</em>' containment reference list.
* @see org.eclipse.rcptt.tesla.core.info.InfoPackage#getAdvancedInformation_Jobs()
* @model containment="true"
* @generated
*/
EList<JobEntry> getJobs();
/**
* Returns the value of the '<em><b>Message</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Message</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Message</em>' attribute.
* @see #setMessage(String)
* @see org.eclipse.rcptt.tesla.core.info.InfoPackage#getAdvancedInformation_Message()
* @model
* @generated
*/
String getMessage();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.info.AdvancedInformation#getMessage <em>Message</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Message</em>' attribute.
* @see #getMessage()
* @generated
*/
void setMessage(String value);
/**
* Returns the value of the '<em><b>Nodes</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.rcptt.tesla.core.info.InfoNode}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Nodes</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>Nodes</em>' containment reference list.
* @see org.eclipse.rcptt.tesla.core.info.InfoPackage#getAdvancedInformation_Nodes()
* @model containment="true"
* @generated
*/
EList<InfoNode> getNodes();
}