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

committedCharacterCount==-1 does not throw IllegalArgumentException

XMLWordPrintable

    • 1.2beta3
    • generic
    • generic
    • Not verified

      committedCharacterCount==-1 does not throw IllegalArgumentException

      committedCharacter count must be positive value or zero, so the negative
      value on InputMethodEvent construction should raise IllegalArgument
      Exception.

      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_TEXT_CHANGED,
      null, -1, 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: