blob: 930531a9845abdf762ebfa0d5201674e8f647cb8 [file] [log] [blame]
package org.eclipse.swt.custom;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
import org.eclipse.swt.events.*;
import java.util.*;
public interface VerifyKeyListener extends EventListener {
/**
* @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);
}