test/java/awt/TextArea/TextAreaCaretVisibilityTest/bug7129742.java

Print this page




  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  * Portions Copyright (c) 2012 IBM Corporation
  26  */
  27 
  28 
  29 /* @test
  30  * @bug 7129742
  31  * @summary Focus in non-editable TextArea is not shown on Linux.

  32  * @modules java.desktop/sun.awt
  33  *          java.desktop/java.awt.peer

  34  * @author Sean Chou
  35  */
  36 
  37 import java.awt.FlowLayout;
  38 import java.awt.TextArea;
  39 import java.awt.Robot;
  40 import java.lang.reflect.Field;
  41 
  42 import javax.swing.JFrame;
  43 import javax.swing.JTextArea;
  44 import javax.swing.SwingUtilities;
  45 import javax.swing.text.DefaultCaret;
  46 
  47 import sun.awt.AWTAccessor;
  48 import sun.awt.AWTAccessor.ComponentAccessor;
  49 
  50 
  51 public class bug7129742 {
  52 
  53     public static DefaultCaret caret = null;




  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  * Portions Copyright (c) 2012 IBM Corporation
  26  */
  27 
  28 
  29 /* @test
  30  * @bug 7129742
  31  * @summary Focus in non-editable TextArea is not shown on Linux.
  32  * @requires (os.family == "linux" | os.name == "solaris")
  33  * @modules java.desktop/sun.awt
  34  *          java.desktop/java.awt.peer
  35  *          java.desktop/sun.awt.X11
  36  * @author Sean Chou
  37  */
  38 
  39 import java.awt.FlowLayout;
  40 import java.awt.TextArea;
  41 import java.awt.Robot;
  42 import java.lang.reflect.Field;
  43 
  44 import javax.swing.JFrame;
  45 import javax.swing.JTextArea;
  46 import javax.swing.SwingUtilities;
  47 import javax.swing.text.DefaultCaret;
  48 
  49 import sun.awt.AWTAccessor;
  50 import sun.awt.AWTAccessor.ComponentAccessor;
  51 
  52 
  53 public class bug7129742 {
  54 
  55     public static DefaultCaret caret = null;