Searched defs:title (Results 51 - 75 of 137) sorted by relevance

123456

/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DTabsDlg.java94 public TabsDlg(String title, Vector panels) argument
96 super(new JFrame(), title, true);
H A DWizardDlg.java119 public WizardDlg(JFrame frame, String title, Vector panels, Vector images) argument
121 super(frame, title, true);
122 this.title = title;
135 public WizardDlg(JFrame frame, String title, Vector panels) argument
137 this(frame, title, panels, null);
140 public WizardDlg(String title, Vector panels) argument
142 this(new JFrame(), title, panels, null);
266 String newTitle = title;
328 private String title; field in class:WizardDlg
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DJavaVFrame.java188 private void printStackValuesOn(PrintStream tty, String title, StackValueCollection values) { argument
192 tty.println("\t" + title + ":");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DHeapSummary.java242 private void printValMB(String title, long value) { argument
244 System.out.println(alignment + title + (value >>> 20) + " MB");
247 System.out.println(alignment + title + value + " (" + mb + "MB)");
251 private void printValue(String title, long value) { argument
252 System.out.println(alignment + title + value);
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputMethodPopupMenu.java57 static InputMethodPopupMenu getInstance(Component client, String title) { argument
60 return new JInputMethodPopupMenu(title);
62 return new AWTInputMethodPopupMenu(title);
170 JInputMethodPopupMenu(String title) { argument
173 delegate = new JPopupMenu(title);
227 AWTInputMethodPopupMenu(String title) { argument
230 delegate = new PopupMenu(title);
H A DInputMethodContext.java336 public Window createInputMethodWindow(String title, boolean attachToInputContext) { argument
338 return createInputMethodWindow(title, context, false);
342 public JFrame createInputMethodJFrame(String title, boolean attachToInputContext) { argument
344 return (JFrame)createInputMethodWindow(title, context, true);
347 static Window createInputMethodWindow(String title, InputContext context, boolean isSwing) { argument
352 return new InputMethodJFrame(title, context);
357 title, context);
/openjdk7/hotspot/src/share/vm/memory/
H A DheapInspection.hpp114 const char* title() const { return _title; } function in class:KlassInfoHisto
119 KlassInfoHisto(const char* title);
/openjdk7/jdk/src/share/classes/java/awt/
H A DFileDialog.java174 * Creates a file dialog for loading a file. The title of the
186 * Creates a file dialog window with the specified title for loading
189 * <code>FileDialog(parent, title, LOAD)</code>.
192 * @param title the title of the dialog
194 public FileDialog(Frame parent, String title) { argument
195 this(parent, title, LOAD);
199 * Creates a file dialog window with the specified title for loading
209 * @param title the title o
217 FileDialog(Frame parent, String title, int mode) argument
263 FileDialog(Dialog parent, String title) argument
297 FileDialog(Dialog parent, String title, int mode) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dtimer.cpp113 TraceTime::TraceTime(const char* title, argument
121 tty->print("[%s", title);
127 TraceTime::TraceTime(const char* title, argument
136 tty->print("[%s", title);
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLDocument.java61 * The title of a document as specified by the <code>TITLE</code> element
65 public void setTitle(String title); argument
/openjdk7/jdk/test/java/awt/Modal/ModalDialogMultiscreenTest/
H A DModalDialogMultiscreenTest.java60 public TestDialog(Frame owner, String title, boolean modal, GraphicsConfiguration gc) { argument
61 super(owner, title, modal, gc);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlDocWriter.java176 * @param title String that describes the link's content for accessibility.
182 String stylename, String title, String target) {
191 if (title != null && title.length() != 0) {
192 retlink.append(" title=\"" + title + "\"");
224 * @param title String that describes the link's content for accessibility.
229 Content label, String title, String target) {
234 if (title != null && title
180 getHyperLinkString(String link, String where, String label, boolean strong, String stylename, String title, String target) argument
228 getHyperLink(String link, String where, Content label, String title, String target) argument
321 printFramesetDocument(String title, boolean noTimeStamp, Content frameset) argument
[all...]
/openjdk7/jdk/src/share/demo/applets/BarChart/
H A DBarChart.java58 private String title; field in class:BarChart
93 title = getParameter("title");
94 if (title == null) {
95 title = "Chart";
191 // draw the title centered at the bottom of the bar graph
197 int titleWidth = metrics.stringWidth(title);
200 g.drawString(title, cx, cy);
307 { "title", "string", "The title o
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DJ2DBench.java123 "[-title] <title> "+
170 System.out.println(" -title "+
171 "Use the title for the saved results");
207 String title = null;
272 } else if (arg.equalsIgnoreCase("-title")) {
274 title = argv[i];
385 if (title == null) {
386 title = inputUserStr("title");
602 saveResults(String title, String desc) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DGtkFileDialogPeer.java56 private native void run(String title, int mode, String dir, String file, argument
H A DXWindowAttributesData.java52 String title; field in class:XWindowAttributesData
65 title = null;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DSmartTransformerFactoryImpl.java250 String title, String charset)
257 title, charset);
249 getAssociatedStylesheet(Source source, String media, String title, String charset) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DBorderFactory.java372 * Creates a new titled border with the specified title,
378 * @param title a <code>String</code> containing the text of the title
381 public static TitledBorder createTitledBorder(String title) { argument
382 return new TitledBorder(title);
386 * Creates a new titled border with an empty title,
392 * @param border the <code>Border</code> object to add the title to; if
402 * Adds a title to an existing border,
407 * @param border the <code>Border</code> object to add the title to
408 * @param title
411 createTitledBorder(Border border, String title) argument
446 createTitledBorder(Border border, String title, int titleJustification, int titlePosition) argument
485 createTitledBorder(Border border, String title, int titleJustification, int titlePosition, Font titleFont) argument
525 createTitledBorder(Border border, String title, int titleJustification, int titlePosition, Font titleFont, Color titleColor) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/border/
H A DTitledBorder.java44 * with the addition of a String title in a
72 protected String title; field in class:TitledBorder
82 * Use the default vertical orientation for the title text.
85 /** Position the title above the border's top line. */
87 /** Position the title in the middle of the border's top line. */
89 /** Position the title below the border's top line. */
91 /** Position the title above the border's bottom line. */
93 /** Position the title in the middle of the border's bottom line. */
95 /** Position the title below the border's bottom line. */
99 * Use the default justification for the title tex
133 TitledBorder(String title) argument
154 TitledBorder(Border border, String title) argument
167 TitledBorder(Border border, String title, int titleJustification, int titlePosition) argument
185 TitledBorder(Border border, String title, int titleJustification, int titlePosition, Font titleFont) argument
207 TitledBorder(Border border, String title, int titleJustification, int titlePosition, Font titleFont, Color titleColor) argument
461 setTitle(String title) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DBorderUIResource.java213 public TitledBorderUIResource(String title) { argument
214 super(title);
221 public TitledBorderUIResource(Border border, String title) { argument
222 super(border, title);
226 String title,
229 super(border, title, titleJustification, titlePosition);
233 String title,
237 super(border, title, titleJustification, titlePosition, titleFont);
240 @ConstructorProperties({"border", "title", "titleJustification", "titlePosition", "titleFont", "titleColor"})
242 String title,
225 TitledBorderUIResource(Border border, String title, int titleJustification, int titlePosition) argument
232 TitledBorderUIResource(Border border, String title, int titleJustification, int titlePosition, Font titleFont) argument
241 TitledBorderUIResource(Border border, String title, int titleJustification, int titlePosition, Font titleFont, Color titleColor) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthProgressBarUI.java325 * @param title the text to paint
327 protected void paintText(SynthContext context, Graphics g, String title) { argument
334 computeStringWidth(context, font, fm, title);
364 style.getGraphicsUtils(context).paintText(context, g, title,
382 style.getGraphicsUtils(context).paintText(context, g, title,
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DDTD.java76 public final Element title = getElement("title"); field in class:DTD
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DInputStreamImageSource.java76 synchronized void printQueues(String title) { argument
77 System.out.println(title+"[ -----------");
83 System.out.println("----------- ]"+title);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1GCPhaseTimes.cpp83 void WorkerDataArray<T>::print(int level, const char* title) { argument
87 buf.append("[%s: ", title);
98 buf.append("[%s:", title);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifInternalFrameTitlePane.java41 * Class that manages a Motif title bar
52 Title title; field in class:MotifInternalFrameTitlePane
57 // The width and height of a title pane button
138 title = new Title(frame.getTitle());
139 title.setFont(getFont());
142 add(title);
214 title.setBounds(BUTTON_SIZE, 0, x, BUTTON_SIZE);
313 Title(String title) { argument
315 setText(title);

Completed in 120 milliseconds

123456