Searched refs:TextArea (Results 1 - 25 of 125) sorted by relevance

12345

/openjdk7/jdk/test/java/awt/Focus/FocusTraversalPolicy/
H A DInitialFTP_AWT.java13 import java.awt.TextArea;
34 TextArea text = new TextArea("qwerty");
/openjdk7/jdk/test/java/awt/event/KeyEvent/KeyReleasedInAppletTest/
H A DTestApplet.java28 import java.awt.TextArea;
38 final TextArea log = new TextArea("Events:\n");
H A DKeyReleasedInAppletTest.java170 TextArea instructionsText;
171 TextArea messageText;
177 int scrollBoth = TextArea.SCROLLBARS_BOTH;
178 instructionsText = new TextArea("", 15, maxStringLength, scrollBoth);
181 messageText = new TextArea("", 5, maxStringLength, scrollBoth);
/openjdk7/jdk/test/java/awt/TextField/ScrollSelectionTest/
H A DScrollSelectionTest.java42 import java.awt.TextArea;
146 TextArea instructionsText;
147 TextArea messageText;
154 int scrollBoth = TextArea.SCROLLBARS_BOTH;
155 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
158 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DTextAreaPeer.java28 import java.awt.TextArea;
47 * @see TextArea#insert(String, int)
58 * @see TextArea#replaceRange(String, int, int)
71 * @see TextArea#getPreferredSize(int, int)
84 * @see TextArea#getMinimumSize(int, int)
/openjdk7/jdk/test/java/awt/TextArea/TextAreaCursorTest/
H A DHoveringAndDraggingTest.java27 @summary Mouse cursor icons for TextArea should be correct in case of hovering or dragging mouse over different subcomponents.
28 @author Konstantin Voloshin: area=awt.TextArea
35 * summary: Mouse cursor icons for TextArea should be correct in case
42 import java.awt.TextArea;
69 panel.add( new TextArea( bigString() ) );
76 Frame frame = new Frame( "TextArea cursor icon test" );
165 TextArea instructionsText;
166 TextArea messageText;
173 int scrollBoth = TextArea.SCROLLBARS_BOTH;
174 instructionsText = new TextArea( "", 1
[all...]
/openjdk7/jdk/test/java/awt/Choice/NonFocusablePopupMenuTest/
H A DNonFocusablePopupMenuTest.java145 TextArea instructionsText;
146 TextArea messageText;
153 int scrollBoth = TextArea.SCROLLBARS_BOTH;
154 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
157 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
/openjdk7/jdk/test/java/awt/Frame/InitialMaximizedTest/
H A DInitialMaximizedTest.java148 TextArea instructionsText;
149 TextArea messageText;
156 int scrollBoth = TextArea.SCROLLBARS_BOTH;
157 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
160 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
/openjdk7/jdk/test/java/awt/Frame/ShownOnPack/
H A DShownOnPack.java159 TextArea instructionsText;
160 TextArea messageText;
167 int scrollBoth = TextArea.SCROLLBARS_BOTH;
168 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
171 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
/openjdk7/jdk/test/java/awt/dnd/DnDFileGroupDescriptor/
H A DDnDFileGroupDescriptor.java121 TextArea instructionsText;
122 TextArea messageText;
129 int scrollBoth = TextArea.SCROLLBARS_BOTH;
130 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
133 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
/openjdk7/jdk/test/java/awt/event/MouseEvent/AWTPanelSmoothWheel/
H A DAWTPanelSmoothWheel.java181 TextArea instructionsText;
182 TextArea messageText;
189 int scrollBoth = TextArea.SCROLLBARS_BOTH;
190 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
193 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
/openjdk7/jdk/test/java/awt/regtesthelpers/
H A DSysout.java98 private TextArea instructionsText;
99 private TextArea messageText;
105 int scrollBoth = TextArea.SCROLLBARS_BOTH;
106 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
109 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
/openjdk7/jdk/test/javax/print/applet/
H A DYesNo.java51 TextArea ta = new TextArea(instructions, 12,80);
/openjdk7/jdk/test/java/awt/TextArea/DisposeTest/
H A DTestDispose.java31 * @summary Editable TextArea blocks GUI application from exit.
37 import java.awt.TextArea;
49 public static TextArea textArea = null;
61 textArea = new TextArea("editable textArea");
/openjdk7/jdk/test/java/awt/TextArea/TextAreaCaretVisibilityTest/
H A Dbug7129742.java31 * @summary Focus in non-editable TextArea is not shown on Linux.
36 import java.awt.TextArea;
60 TextArea textArea = new TextArea("Non-editable textArea");
/openjdk7/jdk/test/java/awt/Component/UpdatingBootTime/
H A DUpdatingBootTime.java153 TextArea instructionsText;
154 TextArea messageText;
161 int scrollBoth = TextArea.SCROLLBARS_BOTH;
162 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
165 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
/openjdk7/jdk/test/java/awt/FileDialog/FileDialogReturnTest/
H A DFileDialogReturnTest.java177 TextArea instructionsText;
178 TextArea messageText;
185 int scrollBoth = TextArea.SCROLLBARS_BOTH;
186 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
189 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
/openjdk7/jdk/test/java/awt/FileDialog/MultipleMode/
H A DMultipleMode.java220 TextArea instructionsText;
221 TextArea messageText;
228 int scrollBoth = TextArea.SCROLLBARS_BOTH;
229 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
232 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
/openjdk7/jdk/test/java/awt/FileDialog/RegexpFilterTest/
H A DRegexpFilterTest.java157 TextArea instructionsText;
158 TextArea messageText;
165 int scrollBoth = TextArea.SCROLLBARS_BOTH;
166 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
169 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
/openjdk7/jdk/test/java/awt/List/MouseDraggedOutCauseScrollingTest/
H A DMouseDraggedOutCauseScrollingTest.java177 TextArea instructionsText;
178 TextArea messageText;
185 int scrollBoth = TextArea.SCROLLBARS_BOTH;
186 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
189 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
/openjdk7/jdk/test/java/awt/List/SetFontTest/
H A DSetFontTest.java165 TextArea instructionsText;
166 TextArea messageText;
173 int scrollBoth = TextArea.SCROLLBARS_BOTH;
174 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
177 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
/openjdk7/jdk/test/java/awt/PrintJob/PageSetupDlgBlockingTest/
H A DPageSetupDlgBlockingTest.java178 TextArea instructionsText;
179 TextArea messageText;
186 int scrollBoth = TextArea.SCROLLBARS_BOTH;
187 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
190 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
/openjdk7/jdk/test/java/awt/PrintJob/PrintCheckboxTest/
H A DPrintCheckboxManualTest.java226 TextArea instructionsText;
227 TextArea messageText;
234 int scrollBoth = TextArea.SCROLLBARS_BOTH;
235 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
238 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnD/
H A DImageDecoratedDnD.java137 TextArea instructionsText;
138 TextArea messageText;
144 int scrollBoth = TextArea.SCROLLBARS_BOTH;
145 instructionsText = new TextArea("", 15, maxStringLength, scrollBoth);
148 messageText = new TextArea("", 5, maxStringLength, scrollBoth);
/openjdk7/jdk/test/sun/java2d/cmm/ColorConvertOp/ConstructorsNullTest/
H A DConstructorsNullTest.java192 TextArea instructionsText;
193 TextArea messageText;
200 int scrollBoth = TextArea.SCROLLBARS_BOTH;
201 instructionsText = new TextArea( "", 15, maxStringLength, scrollBoth );
204 messageText = new TextArea( "", 5, maxStringLength, scrollBoth );

Completed in 77 milliseconds

12345