blob: db86136b52150b7cc5686a95d092c397a56ead28 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Original authors and others.
* 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:
* Original authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.extension.glazedlists.fixture;
import java.util.LinkedList;
import java.util.List;
import org.eclipse.nebula.widgets.nattable.layer.ILayerListener;
import org.eclipse.nebula.widgets.nattable.layer.event.ILayerEvent;
/**
* This class helps us test the event flow by providing access to the
* ILayerEvent fired.
*/
public class LayerListenerFixture implements ILayerListener {
// Received events are kept in order
private final List<ILayerEvent> receivedEvents = new LinkedList<ILayerEvent>();
@Override
public void handleLayerEvent(ILayerEvent event) {
this.receivedEvents.add(event);
}
public List<ILayerEvent> getReceivedEvents() {
return this.receivedEvents;
}
public void clearReceivedEvents() {
this.receivedEvents.clear();
}
public int getEventsCount() {
return this.receivedEvents.size();
}
public boolean containsInstanceOf(Class<? extends ILayerEvent> class1) {
for (ILayerEvent inEvent : this.receivedEvents) {
if (inEvent.getClass().getName().equals(class1.getName())) {
return true;
}
}
return false;
}
public ILayerEvent getReceivedEvent(Class<? extends ILayerEvent> class1) {
for (ILayerEvent inEvent : this.receivedEvents) {
if (inEvent.getClass().getName().equals(class1.getName())) {
return inEvent;
}
}
return null;
}
}