1 /*
   2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   3  *
   4  * This code is free software; you can redistribute it and/or modify it
   5  * under the terms of the GNU General Public License version 2 only, as
   6  * published by the Free Software Foundation.
   7  *
   8  * This code is distributed in the hope that it will be useful, but WITHOUT
   9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  11  * version 2 for more details (a copy is included in the LICENSE file that
  12  * accompanied this code).
  13  *
  14  * You should have received a copy of the GNU General Public License version
  15  * 2 along with this work; if not, write to the Free Software Foundation,
  16  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  17  *
  18  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  19  * or visit www.oracle.com if you need additional information or have any
  20  * questions.
  21  *
  22  */
  23 
  24 /* @test @(#)TestSinhalaChar.java
  25  * @summary verify lack of crash on U+0DDD.
  26  * @bug 6795060
  27  */
  28 
  29 import javax.swing.*;
  30 import javax.swing.border.LineBorder;
  31 import java.awt.*;
  32 import java.awt.event.ActionEvent;
  33 
  34 public class TestSinhalaChar {
  35     public static void main(String[] args) {
  36         SwingUtilities.invokeLater(new Runnable() {
  37             public void run() {
  38                 new TestSinhalaChar().run();
  39             }
  40         });
  41     }
  42     public static boolean AUTOMATIC_TEST=true;  // true; run test automatically, else manually at button push
  43 
  44     private void run() {
  45         JFrame frame = new JFrame("Test Character (no crash = PASS)");
  46         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  47         JPanel panel = new JPanel();
  48         final JLabel label = new JLabel("(empty)");
  49         label.setSize(400, 100);
  50         label.setBorder(new LineBorder(Color.black));
  51         label.setFont(new Font("Lucida Bright", Font.PLAIN, 12));
  52         if(AUTOMATIC_TEST) {  /* run the test automatically (else, manually) */
  53            label.setText(Character.toString('\u0DDD'));
  54         } else {
  55         JButton button = new JButton("Set Char x0DDD");
  56         button.addActionListener(new AbstractAction() {
  57             public void actionPerformed(ActionEvent actionEvent) {
  58            label.setText(Character.toString('\u0DDD'));
  59             }
  60         });
  61         panel.add(button);
  62         }
  63         panel.add(label);
  64 
  65         frame.getContentPane().add(panel);
  66         frame.pack();
  67         frame.setVisible(true);
  68     }
  69 }
  70