-
Bug
-
Resolution: Fixed
-
P3
-
1.2.0
-
1.2beta3
-
generic
-
generic
-
Not verified
Because the range of event IDs for the InputMethodEvent event is from
INPUT_METHOD_FIRST to INPUT_METHOD_LAST, other value than that range
should raise an IllegalArgumentException.
Problem on Windows 95 and Solaris.
Compile and run the attached test code.
---------------------------------------------------------------------
import java.awt.event.InputMethodEvent;
import java.awt.Canvas;
class test
{
public static void main( String args[] )
{
boolean exceptionCaught = false;
InputMethodEvent ime;
Canvas c = new Canvas();
try
{
ime = new InputMethodEvent( c,
InputMethodEvent.INPUT_METHOD_FIRST - 1,
null, 0, null, null );
}
catch ( IllegalArgumentException iae )
{
exceptionCaught = true;
}
if ( exceptionCaught )
System.out.println( "passed." );
else
System.out.println( "failed. IllegalArgumentException is expected" );
try
{
ime = new InputMethodEvent( c,
InputMethodEvent.INPUT_METHOD_LAST + 1,
null, 0, null, null );
}
catch ( IllegalArgumentException iae )
{
exceptionCaught = true;
}
if ( exceptionCaught )
System.out.println( "passed." );
else
System.out.println( "failed. IllegalArgumentException is expected" );
}