blob: b03ef9f89212d197888c4710750d86137465d5ae [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 SAP AG and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* SAP AG - initial API and implementation
******************************************************************************/
package org.eclipse.ocl.examples.eventmanager.filters;
import java.util.Set;
import org.eclipse.ocl.examples.eventmanager.EventFilter;
/**
* A {@link LogicalOperationFilter} applies one logical operator to a set of
* {@link AbstractEventFilter}s
*
* @author Philipp Berger, Axel Uhl
*
*/
public interface LogicalOperationFilter {
/**
* Returns a read-only collection containing the filters
*/
Set<EventFilter> getOperands();
}