blob: 64f82065446152072b22b037761338242679809e [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.eclipse.egf.core.trace;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Filter</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.egf.core.trace.Filter#getComment <em>Comment</em>}</li>
* <li>{@link org.eclipse.egf.core.trace.Filter#getPattern <em>Pattern</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.egf.core.trace.TracePackage#getFilter()
* @model
* @generated
*/
public interface Filter extends EObject {
/**
* Returns the value of the '<em><b>Comment</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Comment</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Comment</em>' attribute.
* @see #setComment(String)
* @see org.eclipse.egf.core.trace.TracePackage#getFilter_Comment()
* @model
* @generated
*/
String getComment();
/**
* Sets the value of the '{@link org.eclipse.egf.core.trace.Filter#getComment <em>Comment</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Comment</em>' attribute.
* @see #getComment()
* @generated
*/
void setComment(String value);
/**
* Returns the value of the '<em><b>Pattern</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Pattern</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Pattern</em>' attribute.
* @see #setPattern(String)
* @see org.eclipse.egf.core.trace.TracePackage#getFilter_Pattern()
* @model
* @generated
*/
String getPattern();
/**
* Sets the value of the '{@link org.eclipse.egf.core.trace.Filter#getPattern <em>Pattern</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Pattern</em>' attribute.
* @see #getPattern()
* @generated
*/
void setPattern(String value);
} // Filter