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