Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4097928

id==(INPUT_METHOD_FIRST - 1) and id==(INPUT_METHOD_LAST + 1) does not throw Ille

XMLWordPrintable

    • 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" );
      }

            nlindenbsunw Norbert Lindenberg (Inactive)
            msonbellsunw Mark Son-bell (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: