blob: 7e97b10b6459044aa61a5aab0bcbeab6806445ee [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.util;
import java.util.Collections;
import java.util.List;
import java.util.Set;
public class StatisticsStub extends Statistics {
@Override
public void begin(String groupId, Object key) {}
@Override
public void end(String groupId, Object key) {}
@Override
public void record(String groupId, Object key, long value) {}
@Override
public void clear() {}
@Override
public List<Record> getRecords(String groupId) {
return Collections.emptyList();
}
@Override
public Set<String> getGroupIds() {
return Collections.emptySet();
}
}