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

No scrollbar on list created by class that extends Frame using java.awt.Choice

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.2.2
    • client-libs
    • sparc
    • solaris_2.5.1



      Name: skT88420 Date: 07/26/99


      Hi,

      Problem occurs on:
      SunOS 5.5 with JDK 1.1.8 (and reportedly Sun Solaris with 1.2,
                                according to Dan Indrigo)
      Compaq's Tru64 UNIX (formerly DIGITAL UNIX) JDK 1.1.7B, 1.1.8
      Compaq's OpenVMS with JDK 1.1.8

      As far as Priority, Severity Impact, Severity Functionality,
      it is not clear what your numbers map to.

      Problem Description:
      The customer has an application that uses a 'List' box to display a list of things. When the list is long, the NT version shows a vertical scroll bar to access the items of the list not in view. But on OpenVMS, Compaq's Tru64 UNIX and Sun Solaris, the list shows up as a long and continuous list and does not have any vertical scrollbars. Because of this, there is no way that one can access the items not in view.

      Java source code to reproduce problem:

      testChoice.java -
      -----------------

      /*
              A basic extension of the java.awt.Frame class
       */

      import java.awt.*;

      public class testChoice extends Frame
      {
              public testChoice()
              {
                      setLayout(null);
                      setSize(320,91);
                      setVisible(false);
                      First_Choice.addItem("one");
                      First_Choice.addItem("two");
                      First_Choice.addItem("three");
                      First_Choice.addItem("four");
                      First_Choice.addItem("five");
                      First_Choice.addItem("six");
                      First_Choice.addItem("seven");
                      First_Choice.addItem("eight");
                      First_Choice.addItem("nine");
                      First_Choice.addItem("ten");
                      First_Choice.addItem("one");
                      First_Choice.addItem("two");
                      First_Choice.addItem("three");
                      First_Choice.addItem("four");
                      First_Choice.addItem("five");
                      First_Choice.addItem("six");
                      First_Choice.addItem("seven");
                      First_Choice.addItem("eight");
                      First_Choice.addItem("nine");
                      First_Choice.addItem("twenty");
                      First_Choice.addItem("one");
                      First_Choice.addItem("two");
                      First_Choice.addItem("three");
                      First_Choice.addItem("four");
                      First_Choice.addItem("five");
                      First_Choice.addItem("six");
                      First_Choice.addItem("seven");
                      First_Choice.addItem("eight");
                      First_Choice.addItem("nine");
                      First_Choice.addItem("thirty");
                      First_Choice.addItem("one");
                      First_Choice.addItem("two");
                      First_Choice.addItem("three");
                      First_Choice.addItem("four");
                      First_Choice.addItem("five");
                      First_Choice.addItem("six");
                      First_Choice.addItem("seven");
                      First_Choice.addItem("eight");
                      First_Choice.addItem("nine");
                      First_Choice.addItem("forty");
                      First_Choice.addItem("one");
                      First_Choice.addItem("two");
                      First_Choice.addItem("three");
                      First_Choice.addItem("four");
                      First_Choice.addItem("five");
                      First_Choice.addItem("six");
                      First_Choice.addItem("seven");
                      First_Choice.addItem("eight");
                      First_Choice.addItem("nine");
                      First_Choice.addItem("fifty");
                      First_Choice.addItem("one");
                      First_Choice.addItem("two");
                      First_Choice.addItem("three");
                      First_Choice.addItem("four");
                      First_Choice.addItem("five");
                      First_Choice.addItem("six");
                      First_Choice.addItem("seven");
                      First_Choice.addItem("eight");
                      First_Choice.addItem("nine");
                      First_Choice.addItem("sixty");
                      try {
                              First_Choice.select(0);
                      }
                      catch (IllegalArgumentException e) { }
                      add(First_Choice);
                      First_Choice.setBounds(48,12,216,24);
                      setTitle("A Simple Frame");
                      setResizable(false);

                      Listen aListen = new Listen();
                      this.addWindowListener(aListen);
              }

              public testChoice(String title)
              {
                      this();
                      setTitle(title);
              }

          public void setVisible(boolean b)
              {
                      if(b)
                      {
                              setLocation(50, 50);
                      }
                      super.setVisible(b);
              }

              static public void main(String args[])
              {
                      (new testChoice()).setVisible(true);
              }

              java.awt.Choice First_Choice = new java.awt.Choice();

              class Listen extends java.awt.event.WindowAdapter
              {
                      public void windowClosing(java.awt.event.WindowEvent event)
                      {
                              Object object = event.getSource();
                              if (object == testChoice.this)
                                      testChoice_WindowClosing(event);
                      }
              }

              void testChoice_WindowClosing(java.awt.event.WindowEvent event)
              {
                      setVisible(false); // hide the Frame
                      System.exit(0);
              }
      }
      (Review ID: 88416)
      ======================================================================

            xdengsunw Xianfa Deng (Inactive)
            skonchad Sandeep Konchady
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: