Searched defs:text (Results 351 - 375 of 881) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DValueFormatter.java30 import java.text.ParseException;
36 import javax.swing.text.AttributeSet;
37 import javax.swing.text.BadLocationException;
38 import javax.swing.text.DefaultFormatterFactory;
39 import javax.swing.text.DocumentFilter;
43 static void init(int length, boolean hex, JFormattedTextField text) { argument
45 text.setColumns(length);
46 text.setFormatterFactory(new DefaultFormatterFactory(formatter));
47 text.setHorizontalAlignment(SwingConstants.RIGHT);
48 text
78 private JFormattedTextField text; field in class:ValueFormatter
86 stringToValue(String text) argument
141 isValid(String text) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultFormatterFactory.java25 package javax.swing.text;
28 import java.text.ParseException;
H A DEditorKit.java25 package javax.swing.text;
32 * Establishes the set of things needed by a text component
34 * of text content. The EditorKit acts as a factory for some
40 * of the kit will be dedicated to a text component.
111 * on a text component that is using a model and
127 * Creates an uninitialized text storage model
171 * Since actual text editing is unicode based, this would
191 * Since actual text editing is unicode based, this would
H A DIconView.java25 package javax.swing.text;
H A DTabSet.java26 package javax.swing.text;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DFormSubmitEvent.java25 package javax.swing.text.html;
27 import javax.swing.text.*;
H A DLineView.java25 package javax.swing.text.html;
32 import javax.swing.text.*;
38 * Row of text.
144 * @param tabOffset the position within the text stream
152 // If the text isn't left justified, offset by 10 pixels!
H A DNoFramesView.java25 package javax.swing.text.html;
27 import javax.swing.text.*;
62 * @see text.ParagraphView#paint
129 * @see text.ParagraphView#getPreferredSpan
146 * @see text.ParagraphView#getMinimumSpan
163 * @see text.ParagraphView#getMaximumSpan
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DContentModel.java26 package javax.swing.text.html.parser;
H A DEntity.java26 package javax.swing.text.html.parser;
H A DParserDelegator.java26 package javax.swing.text.html.parser;
30 import javax.swing.text.html.HTMLEditorKit;
/openjdk7/jdk/src/share/classes/java/awt/im/spi/
H A DInputMethodContext.java32 import java.text.AttributedCharacterIterator;
57 AttributedCharacterIterator text, int committedCharacterCount,
56 dispatchInputMethodEvent(int id, AttributedCharacterIterator text, int committedCharacterCount, TextHitInfo caret, TextHitInfo visiblePosition) argument
/openjdk7/jdk/src/share/classes/java/beans/
H A DPropertyEditor.java144 * Gets the property value as text.
157 * as text.
158 * @param text The string to be parsed.
160 void setAsText(String text) throws java.lang.IllegalArgumentException; argument
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DXMLFormatter.java74 // given text string where XML special characters have been escaped.
76 private void escape(StringBuffer sb, String text) { argument
77 if (text == null) {
78 text = "<null>";
80 for (int i = 0; i < text.length(); i++) {
81 char ch = text.charAt(i);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsCheckBoxMenuItemUI.java78 * Method which renders the text of the current menu item.
82 * @param textRect Bounding rectangle to render the text.
83 * @param text String to render
87 Rectangle textRect, String text) {
90 textRect, text);
100 WindowsGraphicsUtils.paintText(g, menuItem, textRect, text, 0);
86 paintText(Graphics g, JMenuItem menuItem, Rectangle textRect, String text) argument
H A DWindowsRadioButtonMenuItemUI.java78 * Method which renders the text of the current menu item.
82 * @param textRect Bounding rectangle to render the text.
83 * @param text String to render
87 Rectangle textRect, String text) {
89 WindowsMenuItemUI.paintText(accessor, g, menuItem, textRect, text);
99 WindowsGraphicsUtils.paintText(g, menuItem, textRect, text, 0);
86 paintText(Graphics g, JMenuItem menuItem, Rectangle textRect, String text) argument
/openjdk7/hotspot/test/compiler/7192963/
H A DTestByteVect.java195 static int verify(String text, int i, byte elem, byte val) { argument
197 System.err.println(text + "[" + i + "] = " + elem + " != " + val);
H A DTestDoubleVect.java195 static int verify(String text, int i, double elem, double val) { argument
197 System.err.println(text + "[" + i + "] = " + elem + " != " + val);
H A DTestFloatVect.java195 static int verify(String text, int i, float elem, float val) { argument
197 System.err.println(text + "[" + i + "] = " + elem + " != " + val);
H A DTestIntVect.java195 static int verify(String text, int i, int elem, int val) { argument
197 System.err.println(text + "[" + i + "] = " + elem + " != " + val);
H A DTestLongVect.java195 static int verify(String text, int i, long elem, long val) { argument
197 System.err.println(text + "[" + i + "] = " + elem + " != " + val);
H A DTestShortVect.java195 static int verify(String text, int i, short elem, short val) { argument
197 System.err.println(text + "[" + i + "] = " + elem + " != " + val);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKGraphicsUtils.java37 public void paintText(SynthContext context, Graphics g, String text, argument
39 if (text == null || text.length() <= 0) {
45 // Metacity handles painting of text on internal frame title,
57 super.paintText(context, g, text, x, y, mnemonicIndex);
62 super.paintText(context, g, text, x, y, mnemonicIndex);
70 super.paintText(context, g, text, x+1, y+1, mnemonicIndex);
74 super.paintText(context, g, text, x, y, mnemonicIndex);
79 * Paints text at the specified location. This will not attempt to
80 * render the text a
89 paintText(SynthContext context, Graphics g, String text, Rectangle bounds, int mnemonicIndex) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/gen/config/
H A DNGCCEventReceiver.java39 void text(String value) throws SAXException; method in interface:NGCCEventReceiver
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DTextImpl.java44 public TextImpl(SOAPDocumentImpl ownerDoc, String text) { argument
45 super(ownerDoc, text);
53 public void setValue(String text) { argument
54 setNodeValue(text);

Completed in 96 milliseconds

<<11121314151617181920>>