blob: 3d44eb51a4c35d144a2c55840972c11a0bf43f7a [file] [log] [blame]
package org.eclipse.swt.custom;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
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);
}