jdk/test/java/awt/TextField/SelectionVisible/SelectionVisible.java
changeset 20435 543c1c7dd21a
equal deleted inserted replaced
20434:19c5cdb0d7a2 20435:543c1c7dd21a
       
     1 /*
       
     2  * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.
       
     8  *
       
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    12  * version 2 for more details (a copy is included in the LICENSE file that
       
    13  * accompanied this code).
       
    14  *
       
    15  * You should have received a copy of the GNU General Public License version
       
    16  * 2 along with this work; if not, write to the Free Software Foundation,
       
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    18  *
       
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    20  * or visit www.oracle.com if you need additional information or have any
       
    21  * questions.
       
    22  */
       
    23 
       
    24 
       
    25 import java.applet.Applet;
       
    26 import java.awt.BorderLayout;
       
    27 import java.awt.Dimension;
       
    28 import java.awt.FlowLayout;
       
    29 import java.awt.Panel;
       
    30 import java.awt.TextArea;
       
    31 import java.awt.TextField;
       
    32 
       
    33 public final class SelectionVisible extends Applet {
       
    34 
       
    35     TextField tf;
       
    36 
       
    37     @Override
       
    38     public void init() {
       
    39         tf = new TextField(20);
       
    40         tf.setText("0123456789");
       
    41         tf.select(0, 6);
       
    42 
       
    43         final TextArea ta = new TextArea("INSTRUCTIONS:\n"
       
    44                                          + "The text 012345 should be selected in the TextField.\n"
       
    45                                          + "If this is what you observe, then the test passes.\n"
       
    46                                          + "Otherwise, the test fails.", 40, 5,
       
    47                                          TextArea.SCROLLBARS_NONE);
       
    48         ta.setEditable(false);
       
    49         ta.setPreferredSize(new Dimension(300, 70));
       
    50         final Panel panel = new Panel();
       
    51         panel.setLayout(new FlowLayout());
       
    52         panel.add(tf);
       
    53         setLayout(new BorderLayout());
       
    54         add(ta, BorderLayout.CENTER);
       
    55         add(panel, BorderLayout.PAGE_END);
       
    56     }
       
    57 
       
    58     @Override
       
    59     public void start() {
       
    60         setVisible(true);
       
    61         tf.requestFocus();
       
    62     }
       
    63 }