blob: 2a3cd0b9aefe37826cc12511678c2bda3b324493 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2014 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.sherlock.core.model.sherlock.report;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Logging Data</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.rcptt.sherlock.core.model.sherlock.report.LoggingData#getText <em>Text</em>}</li>
* <li>{@link org.eclipse.rcptt.sherlock.core.model.sherlock.report.LoggingData#getCategory <em>Category</em>}</li>
* </ul>
*
* @see org.eclipse.rcptt.sherlock.core.model.sherlock.report.ReportPackage#getLoggingData()
* @model
* @generated
*/
public interface LoggingData extends EObject {
/**
* Returns the value of the '<em><b>Text</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Text</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Text</em>' attribute.
* @see #setText(String)
* @see org.eclipse.rcptt.sherlock.core.model.sherlock.report.ReportPackage#getLoggingData_Text()
* @model default=""
* @generated
*/
String getText();
/**
* Sets the value of the '{@link org.eclipse.rcptt.sherlock.core.model.sherlock.report.LoggingData#getText <em>Text</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Text</em>' attribute.
* @see #getText()
* @generated
*/
void setText(String value);
/**
* Returns the value of the '<em><b>Category</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.rcptt.sherlock.core.model.sherlock.report.LoggingCategory}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Category</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Category</em>' attribute.
* @see org.eclipse.rcptt.sherlock.core.model.sherlock.report.LoggingCategory
* @see #setCategory(LoggingCategory)
* @see org.eclipse.rcptt.sherlock.core.model.sherlock.report.ReportPackage#getLoggingData_Category()
* @model
* @generated
*/
LoggingCategory getCategory();
/**
* Sets the value of the '{@link org.eclipse.rcptt.sherlock.core.model.sherlock.report.LoggingData#getCategory <em>Category</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Category</em>' attribute.
* @see org.eclipse.rcptt.sherlock.core.model.sherlock.report.LoggingCategory
* @see #getCategory()
* @generated
*/
void setCategory(LoggingCategory value);
} // LoggingData