blob: 42da61084d8e62b4d257a6253d482dcf41c07931 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2014 IBM Corporation and others.
*
* 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
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.tests.junit;
import org.eclipse.swt.events.ArmEvent;
import org.eclipse.swt.events.TypedEvent;
import org.eclipse.swt.widgets.Event;
/**
* Automated Test Suite for class org.eclipse.swt.events.ArmEvent
*
* @see org.eclipse.swt.events.ArmEvent
*/
public class Test_org_eclipse_swt_events_ArmEvent extends Test_org_eclipse_swt_events_TypedEvent {
/* custom */
@Override
protected TypedEvent newTypedEvent(Event event) {
return new ArmEvent(event);
}
}