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

JTextPane does not allow insert of components when JTextPane is not editable

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 5.0
    • 1.3.1, 1.4.2
    • client-libs
    • tiger
    • x86
    • windows_2000



      Name: gm110360 Date: 05/21/2002


      FULL PRODUCT VERSION :
      java version "1.3.1"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
      Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)

      FULL OPERATING SYSTEM VERSION :
      Microsoft Windows 2000 [Version 5.00.2195]



      A DESCRIPTION OF THE PROBLEM :
      When inserting components or icons programmatically into a
      JTextPane, nothing shows up unless the JTextPane is
      editable. This is confusing because it's perfectly
      possible to insert text programmatically into the JTextPane
      whether it's set to be editable or not. This feature also
      does not appear in the API.

      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import javax.swing.*;
      import java.awt.*;
      import java.awt.event.*;

      public class JTextPaneTest extends JFrame{
      JTextPane pane;
      JButton button = new JButton("Test");

      public JTextPaneTest (){
      pane = new JTextPane();
      pane.setEditable(false);
      pane.insertComponent(button);
      getContentPane().add(pane);
      setSize(200,200);
      addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
      System.exit(0);
      }
      });
      setVisible(true);
      }

      public static void main(String[] args){
      JTextPaneTest test = new JTextPaneTest();
      }

      }// JTextPaneTest
      ---------- END SOURCE ----------

      CUSTOMER WORKAROUND :
      Set the JTextPane to editable, then set it back to
      uneditable after you add the component.
      (Review ID: 138730)
      ======================================================================

            peterz Peter Zhelezniakov
            gmanwanisunw Girish Manwani (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: