Searched defs:text (Results 426 - 450 of 881) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/java/beans/
H A DPropertyEditorSupport.java174 * as text.
176 * @param text The string to be parsed.
178 public void setAsText(String text) throws java.lang.IllegalArgumentException { argument
180 setValue(text);
183 throw new java.lang.IllegalArgumentException(text);
/openjdk7/jdk/src/share/classes/java/text/
H A DAttributedCharacterIterator.java26 package java.text;
35 * An {@code AttributedCharacterIterator} allows iteration through both text and
46 * <p>A <em>run with respect to an attribute</em> is a maximum text range for
54 * <p>A <em>run with respect to a set of attributes</em> is a maximum text range for
59 * contiguous text segments having the same attributes (the same set
61 * attributes have been given to those text segments separately.
82 * Defines attribute keys that are used to identify text attributes. These
162 * Attribute key for the language of some text.
169 * Attribute key for the reading of some text. In languages where the written form
181 * up text int
[all...]
H A DBreakDictionary.java40 package java.text;
47 import sun.text.CompactByteArray;
48 import sun.text.SupplementaryCharacterData;
151 return new BufferedInputStream(getClass().getResourceAsStream("/sun/text/resources/" + dictionaryName));
H A DCalendarBuilder.java26 package java.text;
H A DDictionaryBasedBreakIterator.java41 package java.text;
46 import java.text.CharacterIterator;
52 * to further subdivide ranges of text beyond what is possible using just the
56 * up text as far as possible, and then contiguous ranges of letters are
63 * if the iterator passes over a chunk of text that includes two or more characters
69 * it looks for it in /com/ibm/text/resources in each directory in the classpath,
100 * leaves this range of text
143 * Sets the current iteration position to the beginning of the text.
145 * @return The offset of the beginning of the text.
155 * Sets the current iteration position to the end of the text
[all...]
H A DFormat.java39 package java.text;
81 * when no text in the required format is at the beginning of the input text.
126 * @see java.text.ParsePosition
127 * @see java.text.FieldPosition
128 * @see java.text.NumberFormat
129 * @see java.text.DateFormat
130 * @see java.text.MessageFormat
161 * Formats an object and appends the resulting text to a given string
168 * @param toAppendTo where the text i
[all...]
H A DMergeCollation.java39 package java.text;
H A DRuleBasedCollator.java39 package java.text;
41 import java.text.Normalizer;
67 * &lt;relation&gt; &lt;text-argument&gt;
68 * &lt;reset&gt; &lt;text-argument&gt;
72 * <LI><strong>Text-Argument</strong>: A text-argument is any sequence of
104 * the reset text-argument would be sorted.
118 * after the text-argument. The following are not equivalent:
125 * Either the text-argument must already be present in the sequence, or some
126 * initial substring of the text-argument must be present. (e.g. "a &lt; b &amp; ae &lt;
142 * text
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsGraphicsUtils.java47 * Renders a text String in Windows without the mnemonic.
53 * @param textRect Bounding rectangle to render the text.
54 * @param text String to render
57 Rectangle textRect, String text,
71 text, mnemIndex);
75 text, mnemIndex);
80 String text, int mnemIndex) {
86 /*** paint the text normally */
96 SwingUtilities2.drawStringUnderlineCharAt(b, g,text, mnemIndex, x, y);
97 } else { /*** paint the text disable
56 paintText(Graphics g, AbstractButton b, Rectangle textRect, String text, int textShiftOffset) argument
79 paintClassicText(AbstractButton b, Graphics g, int x, int y, String text, int mnemIndex) argument
118 paintXPText(AbstractButton b, Graphics g, int x, int y, String text, int mnemIndex) argument
125 paintXPText(AbstractButton b, Part part, State state, Graphics g, int x, int y, String text, int mnemIndex) argument
[all...]
H A DWindowsMenuItemUI.java72 * Method which renders the text of the current menu item.
76 * @param textRect Bounding rectangle to render the text.
77 * @param text String to render
80 Rectangle textRect, String text) {
82 WindowsMenuItemUI.paintText(accessor, g, menuItem, textRect, text);
94 WindowsGraphicsUtils.paintText(g, menuItem, textRect, text, 0);
133 String text) {
149 text, mnemIndex);
79 paintText(Graphics g, JMenuItem menuItem, Rectangle textRect, String text) argument
131 paintText(WindowsMenuItemUIAccessor menuItemUI, Graphics g, JMenuItem menuItem, Rectangle textRect, String text) argument
H A DWindowsRadioButtonUI.java106 * Overridden method to render the text without the mnemonic
108 protected void paintText(Graphics g, AbstractButton b, Rectangle textRect, String text) { argument
109 WindowsGraphicsUtils.paintText(g, b, textRect, text, getTextShiftOffset());
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/
H A DCramMD5Base.java149 * MD5(key XOR opad, MD5(key XOR ipad, text))
154 * text is the data to be protected
156 final static String HMAC_MD5(byte[] key, byte[] text) argument
189 md5.update(text);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DTypeScript.java98 public void append(String text) { argument
99 history.append(text);
121 String text = entry.getText();
125 history.append(text);
130 return text;
/openjdk7/jdk/src/share/classes/java/awt/
H A DLabel.java33 * A <code>Label</code> object is a component for placing text in a
34 * container. A label displays a single line of read-only text.
35 * The text can be changed by the application, but a user cannot edit it
81 * The text of this label.
82 * This text can be modified by the program
89 String text; field in class:Label
111 * The text of the label is the empty string <code>""</code>.
121 * Constructs a new label with the specified string of text,
123 * @param text the string that the label presents.
131 public Label(String text) throw argument
149 Label(String text, int alignment) argument
245 setText(String text) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DInputMethodEvent.java34 import java.text.AttributedCharacterIterator;
35 import java.text.CharacterIterator;
38 * Input method events contain information about text that is being
39 * composed using an input method. Whenever the text changes, the
40 * input method sends an event. If the text component that's currently
46 * The text included with the input method event consists of two parts:
47 * committed text and composed text. Either part may be empty. The two
48 * parts together replace any uncommitted composed text sent in previous events,
49 * or the currently selected committed text
99 private transient AttributedCharacterIterator text; field in class:InputMethodEvent
147 InputMethodEvent(Component source, int id, long when, AttributedCharacterIterator text, int committedCharacterCount, TextHitInfo caret, TextHitInfo visiblePosition) argument
217 InputMethodEvent(Component source, int id, AttributedCharacterIterator text, int committedCharacterCount, TextHitInfo caret, TextHitInfo visiblePosition) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DLineBreakMeasurer.java43 import java.text.BreakIterator;
44 import java.text.CharacterIterator;
45 import java.text.AttributedCharacterIterator;
49 * The <code>LineBreakMeasurer</code> class allows styled text to be
52 * text that fits within a specific width, called the <b>wrapping
56 * styled text. The iterator's range should be a single paragraph in the
57 * text.
58 * <code>LineBreakMeasurer</code> maintains a position in the text for the
59 * start of the next text segment. Initially, this position is the
60 * start of text
276 LineBreakMeasurer(AttributedCharacterIterator text, FontRenderContext frc) argument
302 LineBreakMeasurer(AttributedCharacterIterator text, BreakIterator breakIter, FontRenderContext frc) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputMethod.java89 public void setBytecodes(String text) { argument
91 String[] strings = text.split("\n");
/openjdk7/hotspot/test/compiler/7196199/
H A DTest7196199.java28 * @summary java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
181 static int verify(String text, int i, float elem, float val) { argument
183 System.err.println(text + "[" + i + "] = " + elem + " != " + val);
/openjdk7/jdk/make/tools/swing-beans/
H A DGenDocletBeanInfo.java163 System.out.println("GenDocletBeanInfo: found @beaninfo tagged Class: " + tags[i].text());
164 dbi = genDocletInfo(tags[i].text(), classes[cnt].name());
189 System.out.println("GenDocletBeanInfo: found @beaninfo tagged Method: " + tags[x].text());
190 dbi = genDocletInfo(tags[x].text(), propDesc);
239 * @param text All the text after the @beaninfo tag.
242 private static DocBeanInfo genDocletInfo(String text, String name) { argument
256 if ((index = text.indexOf(ATTRIBUTE_NAMES[j])) != -1){
257 value = getValue((text).substring(index),ATTRIBUTE_NAMES[j]);
/openjdk7/hotspot/src/share/vm/utilities/
H A Dxmlstream.hpp34 // Sub-stream for writing quoted text, as opposed to markup.
54 // Use the xmlStream::text() stream to write unmarked text.
64 enum MarkupState { BODY, // after end_head() call, in text
72 outputStream* _text; // text stream
102 // text output
131 // write text (with quoting of special XML characters <>&'" etc.)
132 outputStream* text() { return _text; } function in class:xmlStream
133 void text(const char* format, ...);
135 text()
[all...]
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLBodyElement.java83 * Document text color. See the text attribute definition in HTML 4.0.
87 public void setText(String text); argument
H A DHTMLScriptElement.java53 public void setText(String text); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DBIUserConversion.java87 private static Element parse(String text) { argument
91 InputSource is = new InputSource(new StringReader(text));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DForkXmlOutput.java100 public void text(String value, boolean needsSeparatingWhitespace) throws IOException, SAXException, XMLStreamException { method in class:ForkXmlOutput
101 lhs.text(value,needsSeparatingWhitespace);
102 rhs.text(value,needsSeparatingWhitespace);
105 public void text(Pcdata value, boolean needsSeparatingWhitespace) throws IOException, SAXException, XMLStreamException { method in class:ForkXmlOutput
106 lhs.text(value,needsSeparatingWhitespace);
107 rhs.text(value,needsSeparatingWhitespace);
H A DMTOMXmlOutput.java101 public void text( String value, boolean needsSeparatingWhitespace ) throws IOException, SAXException, XMLStreamException { method in class:MTOMXmlOutput
102 next.text(value,needsSeparatingWhitespace);
105 public void text( Pcdata value, boolean needsSeparatingWhitespace ) throws IOException, SAXException, XMLStreamException { method in class:MTOMXmlOutput
127 next.text(value, needsSeparatingWhitespace);

Completed in 128 milliseconds

<<11121314151617181920>>