blob: 48a30b9cfa5c8419232093d9b14f457390c1ad3c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 The Eclipse Foundation.
* 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:
* The Eclipse Foundation - initial API and implementation
*******************************************************************************/
package org.eclipse.epp.usagedata.internal.recording.filtering;
import org.eclipse.epp.usagedata.internal.gathering.events.UsageDataEvent;
/**
* The {@link NullFilter} accepts everything.
*
* @author Wayne Beaton
*
*/
public class NullFilter extends AbstractUsageDataEventFilter {
public boolean includes(UsageDataEvent event) {
return true;
}
}