blob: 54c53a97ec35b69944759de6ca407f29b370bf3a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.tracecompass.tmf.core.filter.model;
/**
* Interface to leverage commonalities with filters with values
*
* @author Matthew Khouzam
* @since 5.1
*/
public interface ITmfFilterWithValue {
/**
* value attribute name, for serialization
*/
String VALUE_ATTRIBUTE = "value"; //$NON-NLS-1$
/**
* Gets the value
*
* @return the value
*/
String getValue();
/**
* Sets the value
*
* @param value
* the value
*/
void setValue(String value);
}