blob: c0bff9d326beb0333ce13bab0a737a9a409cf9c5 [file] [log] [blame]
/**
* Copyright (c) 2014, Loetz GmbH&Co.KG (Heidelberg)
* 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
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Loetz GmbH&Co.KG - Initial implementation
*
*/
package org.eclipse.osbp.xtext.blip;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Blip Filter</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.xtext.blip.BlipFilter#getFilterName <em>Filter Name</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.blip.BlipFilter#getFilterValue <em>Filter Value</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.xtext.blip.BlipDSLPackage#getBlipFilter()
* @model
* @generated
*/
public interface BlipFilter extends BlipLazyResolver {
/**
* Returns the value of the '<em><b>Filter Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Filter Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Filter Name</em>' attribute.
* @see #setFilterName(String)
* @see org.eclipse.osbp.xtext.blip.BlipDSLPackage#getBlipFilter_FilterName()
* @model unique="false"
* @generated
*/
String getFilterName();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.blip.BlipFilter#getFilterName <em>Filter Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Filter Name</em>' attribute.
* @see #getFilterName()
* @generated
*/
void setFilterName(String value);
/**
* Returns the value of the '<em><b>Filter Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Filter Value</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Filter Value</em>' attribute.
* @see #setFilterValue(String)
* @see org.eclipse.osbp.xtext.blip.BlipDSLPackage#getBlipFilter_FilterValue()
* @model unique="false"
* @generated
*/
String getFilterValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.blip.BlipFilter#getFilterValue <em>Filter Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Filter Value</em>' attribute.
* @see #getFilterValue()
* @generated
*/
void setFilterValue(String value);
} // BlipFilter