Searched defs:text (Results 276 - 300 of 881) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/sun/net/www/content/text/
H A Dplain.java27 * Plain text file handler.
30 package sun.net.www.content.text;
/openjdk7/langtools/test/tools/javac/annotations/
H A DTestAnnotationPackageInfo.java42 private String text; field in class:TestAnnotationPackageInfo.MyFileObject
43 public MyFileObject(String fileName, String text) { argument
45 this.text = text;
49 return text;
/openjdk7/jdk/src/share/classes/sun/text/
H A DCodePointIterator.java36 package sun.text;
38 import java.text.CharacterIterator;
51 public static CodePointIterator create(char[] text) { argument
52 return new CharArrayCodePointIterator(text);
55 public static CodePointIterator create(char[] text, int start, int limit) { argument
56 return new CharArrayCodePointIterator(text, start, limit);
59 public static CodePointIterator create(CharSequence text) { argument
60 return new CharSequenceCodePointIterator(text);
69 private char[] text; field in class:CharArrayCodePointIterator
74 public CharArrayCodePointIterator(char[] text) { argument
79 CharArrayCodePointIterator(char[] text, int start, int limit) argument
133 private CharSequence text; field in class:CharSequenceCodePointIterator
136 CharSequenceCodePointIterator(CharSequence text) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DWhitespaceBasedBreakIterator.java26 package javax.swing.text;
28 import java.text.BreakIterator;
29 import java.text.CharacterIterator;
30 import java.text.StringCharacterIterator;
39 private char[] text = new char[0]; field in class:WhitespaceBasedBreakIterator
44 * Calculate break positions eagerly parallel to reading text.
48 text = new char[ci.getEndIndex() - begin];
49 int[] breaks0 = new int[text.length + 1];
56 text[charIx] = c;
64 if (text
[all...]
H A DDateFormatter.java25 package javax.swing.text;
28 import java.text.*;
31 import javax.swing.text.*;
35 * formatting by way of an instance of <code>java.text.DateFormat</code>.
46 * @see java.text.DateFormat
H A DElement.java25 package javax.swing.text;
H A DLayeredHighlighter.java25 package javax.swing.text;
H A DLayoutQueue.java25 package javax.swing.text;
31 * A queue of text layout tasks.
112 super("text-layout");
H A DMutableAttributeSet.java25 package javax.swing.text;
H A DSegmentCache.java25 package javax.swing.text;
H A DTextAction.java25 package javax.swing.text;
38 * shared across a number of different text components. Because
41 * find a text component to operate on. The preferred way of
44 * be narrowed to a text component, it will be used. If the
46 * text component is tried. This is determined by being
124 * Fetches the text component that currently has focus.
125 * This allows actions to be shared across text components
/openjdk7/jdk/src/share/classes/java/text/
H A DStringCharacterIterator.java41 package java.text;
54 private String text; field in class:StringCharacterIterator
63 public StringCharacterIterator(String text) argument
65 this(text, 0);
71 * @param text The String to be iterated over
74 public StringCharacterIterator(String text, int pos) argument
76 this(text, 0, text.length(), pos);
83 * @param text The String to be iterated over
88 public StringCharacterIterator(String text, in argument
113 setText(String text) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DRuleCharacterIterator.java46 package sun.text.normalizer;
48 import java.text.ParsePosition;
70 private String text; field in class:RuleCharacterIterator
125 * Constructs an iterator over the given text, starting at the given
127 * @param text the text to be iterated
135 public RuleCharacterIterator(String text, SymbolTable sym, argument
137 if (text == null || pos.getIndex() > text.length()) {
140 this.text
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DAttributeValue.java34 String text, Parser parser) {
37 if (text.indexOf('{') != -1) {
38 result = new AttributeValueTemplate(text, parser, parent);
40 else if (text.indexOf('}') != -1) {
41 result = new AttributeValueTemplate(text, parser, parent);
44 result = new SimpleAttributeValue(text);
33 create(SyntaxTreeNode parent, String text, Parser parser) argument
/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DCommentEvent.java45 public CommentEvent(String text) { argument
47 fText = text;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DEditableAtEndDocument.java27 import javax.swing.text.*;
39 public void insertString(int offset, String text, AttributeSet a) argument
42 super.insertString(len, text, a);
H A DJavaStackTracePanel.java81 private void setStackTraceText(String text) { argument
82 stackTraceEditor.setText(text);
85 private void setContentText(String text) { argument
86 contentEditor.setText(text);
H A DProgressBarPanel.java33 private JLabel text; field in class:ProgressBarPanel
49 text = new JLabel();
50 add(text, BorderLayout.NORTH);
58 text = new JLabel();
59 add(text);
65 public ProgressBarPanel(String text) { argument
67 setText(text);
70 public ProgressBarPanel(int layoutType, String text) { argument
72 setText(text);
75 public void setText(String text) { argument
[all...]
/openjdk7/jdk/src/share/classes/javax/security/auth/callback/
H A DTextInputCallback.java31 * method of a <code>CallbackHandler</code> to retrieve generic text
80 * @param defaultText the text to be used as the default text displayed
109 * Get the default text.
113 * @return the default text, or null if this <code>TextInputCallback</code>
121 * Set the retrieved text.
125 * @param text the retrieved text, which may be null.
129 public void setText(String text) { argument
130 this.inputText = text;
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJRadioButtonMenuItem.java94 * Creates a <code>JRadioButtonMenuItem</code> with no set text or icon.
111 * Creates a <code>JRadioButtonMenuItem</code> with text.
113 * @param text the text of the <code>JRadioButtonMenuItem</code>
115 public JRadioButtonMenuItem(String text) { argument
116 this(text, null, false);
134 * Creates a radio button menu item with the specified text
137 * @param text the text of the <code>JRadioButtonMenuItem</code>
140 public JRadioButtonMenuItem(String text, Ico argument
151 JRadioButtonMenuItem(String text, boolean selected) argument
176 JRadioButtonMenuItem(String text, Icon icon, boolean selected) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DEditableView.java25 package javax.swing.text.html;
32 import javax.swing.text.*;
H A DHTMLFrameHyperlinkEvent.java25 package javax.swing.text.html;
28 import javax.swing.text.*;
H A DListView.java25 package javax.swing.text.html;
29 import javax.swing.text.*;
H A DObjectView.java25 package javax.swing.text.html;
30 import javax.swing.text.*;
64 * &lt;param name="text" value="sample text"&gt;
H A DOption.java25 package javax.swing.text.html;
28 import javax.swing.text.*;

Completed in 65 milliseconds

<<11121314151617181920>>