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
25import java.applet.Applet;
26import java.awt.BorderLayout;
27import java.awt.Dimension;
28import java.awt.FlowLayout;
29import java.awt.Panel;
30import java.awt.TextArea;
31
32public final class SelectionVisible extends Applet {
33
34    private TextArea ta;
35
36    @Override
37    public void init() {
38        ta = new TextArea(4, 20);
39        ta.setText("01234\n56789");
40        ta.select(3, 9);
41
42        final TextArea instruction = new TextArea("INSTRUCTIONS:\n"
43                                                 + "The text 34567 should be selected in the TextArea.\n"
44                                                 + "If this is what you observe, then the test passes.\n"
45                                                 + "Otherwise, the test fails.", 40, 5,
46                                         TextArea.SCROLLBARS_NONE);
47        instruction.setEditable(false);
48        instruction.setPreferredSize(new Dimension(300, 70));
49        final Panel panel = new Panel();
50        panel.setLayout(new FlowLayout());
51        panel.add(ta);
52        setLayout(new BorderLayout());
53        add(instruction, BorderLayout.CENTER);
54        add(panel, BorderLayout.PAGE_END);
55    }
56
57    @Override
58    public void start() {
59        setVisible(true);
60        ta.requestFocus();
61    }
62}
63