< prev index next >

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

Print this page
rev 59106 : imported patch client


  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 /*
  30  * @test
  31  * @key headful
  32  * @bug 7129742
  33  * @summary Focus in non-editable TextArea is not shown on Linux.
  34  * @requires (os.family == "linux" | os.family == "solaris")
  35  * @modules java.desktop/sun.awt
  36  *          java.desktop/java.awt.peer
  37  *          java.desktop/sun.awt.X11:open
  38  * @author Sean Chou
  39  */
  40 
  41 import java.awt.FlowLayout;
  42 import java.awt.TextArea;
  43 import java.awt.Robot;
  44 import java.lang.reflect.Field;
  45 
  46 import javax.swing.JFrame;
  47 import javax.swing.JTextArea;
  48 import javax.swing.SwingUtilities;
  49 import javax.swing.text.DefaultCaret;
  50 
  51 import sun.awt.AWTAccessor;
  52 import sun.awt.AWTAccessor.ComponentAccessor;
  53 
  54 




  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 /*
  30  * @test
  31  * @key headful
  32  * @bug 7129742
  33  * @summary Focus in non-editable TextArea is not shown on Linux.
  34  * @requires os.family == "linux"
  35  * @modules java.desktop/sun.awt
  36  *          java.desktop/java.awt.peer
  37  *          java.desktop/sun.awt.X11:open
  38  * @author Sean Chou
  39  */
  40 
  41 import java.awt.FlowLayout;
  42 import java.awt.TextArea;
  43 import java.awt.Robot;
  44 import java.lang.reflect.Field;
  45 
  46 import javax.swing.JFrame;
  47 import javax.swing.JTextArea;
  48 import javax.swing.SwingUtilities;
  49 import javax.swing.text.DefaultCaret;
  50 
  51 import sun.awt.AWTAccessor;
  52 import sun.awt.AWTAccessor.ComponentAccessor;
  53 
  54 


< prev index next >