blob: 1af445df290321e192ea18058ff0ad60dfb3c98a [file] [log] [blame]
package org.eclipse.swt.custom;
/*
* Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
* This file is made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*/
import org.eclipse.swt.events.*;
import org.eclipse.swt.internal.SWTEventListener;
public interface VerifyKeyListener extends SWTEventListener {
/**
* @param event.character the character that was typed (input)
* @param event.keyCode the key code that was typed (input)
* @param event.stateMask the state of the keyboard (input)
* @param event.doit processed or not (output)
*/
public void verifyKey (VerifyEvent event);
}