Searched defs:title (Results 76 - 100 of 137) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DQueryHandler.java85 protected void startHtml(String title) { argument
86 out.print("<html><title>");
87 print(title);
88 out.println("</title>");
90 print(title);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dsun_awt_X11_GtkFileDialogPeer.c222 const char *title = jtitle == NULL? "": (*env)->GetStringUTFChars(env, jtitle, 0); local
226 dialog = fp_gtk_file_chooser_dialog_new(title, NULL,
232 dialog = fp_gtk_file_chooser_dialog_new(title, NULL,
244 (*env)->ReleaseStringUTFChars(env, jtitle, title);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlStyle.java73 title, enum constant in enum:HtmlStyle
H A DHtmlTree.java252 * @param title the title for the frame
256 public static HtmlTree FRAME(String src, String name, String title, String scrolling) { argument
260 htmltree.addAttr(HtmlAttr.TITLE, nullCheck(title));
271 * @param title the title for the frame
274 public static HtmlTree FRAME(String src, String name, String title) { argument
275 return FRAME(src, name, title, null);
283 * @param title the title fo
287 FRAMESET(String cols, String rows, String title, String onload) argument
414 LINK(String rel, String type, String href, String title) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DMaximizableInternalFrame.java53 public MaximizableInternalFrame(String title, boolean resizable, argument
56 super(title, resizable, closable, maximizable, iconifiable);
97 // Merge title bar into menu bar
120 // Restore title bar
123 // Move buttons back to title bar
182 public void setTitle(String title) { argument
185 getMainFrame().setTitle(mainTitle + " - " + title);
188 super.setTitle(title);
259 // A wrapper class for the title pane button icons.
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXSheet.java143 private void showErrorDialog(Object message, String title) { argument
144 new ThreadDialog(this, message, title, JOptionPane.ERROR_MESSAGE).run();
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/report/
H A DXMLHTMLReporter.java1204 String title,
1210 String headerTitle = getHeaderTitle(title);
1235 * Returns start tag and title tag for HTML files
1237 private static String getHeaderTitle(String title) { argument
1241 buffer.append("<html><head><title>" + title + "</title></head>");
1243 buffer.append("<center><h2>" + title + "</h2>");
1202 getHeader(J2DAnalyzer.SingleResultSetHolder baseSRSH, J2DAnalyzer.SingleResultSetHolder targetSRSH, String title, String sysPropLoc) argument
/openjdk7/jdk/test/java/util/ResourceBundle/
H A DBug4168625Test.java469 public void logClasses(String title) { argument
470 logln(title);
/openjdk7/langtools/test/tools/javac/diags/
H A DRunExamples.java54 * -title string specify a title, only applies to HTML output
104 String title = null;
120 else if (arg.equals("-title") && (i + 1) < args.length)
121 title = args[++i];
162 r = new HTMLRunner(outFile, showFiles, raw, verbose, title);
337 HTMLRunner(File file, boolean showFiles, boolean raw, boolean verbose, String title) argument
344 if (title != null) {
346 html.write(title);
375 if (title !
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJColorChooser.java127 * @param title the String containing the dialog's title
135 String title, Color initialColor) throws HeadlessException {
141 JDialog dialog = createDialog(component, title, true, pane, ok, null);
161 * @param title the title for the dialog
172 public static JDialog createDialog(Component c, String title, boolean modal, argument
179 dialog = new ColorChooserDialog((Frame)window, title, modal, c, chooserPane,
182 dialog = new ColorChooserDialog((Dialog)window, title, modal, c, chooserPane,
185 dialog.getAccessibleContext().setAccessibleDescription(title);
134 showDialog(Component component, String title, Color initialColor) argument
613 ColorChooserDialog(Dialog owner, String title, boolean modal, Component c, JColorChooser chooserPane, ActionListener okListener, ActionListener cancelListener) argument
621 ColorChooserDialog(Frame owner, String title, boolean modal, Component c, JColorChooser chooserPane, ActionListener okListener, ActionListener cancelListener) argument
[all...]
H A DJDialog.java134 * Creates a modeless dialog without a title and without a specified
158 * as its owner and an empty title. If {@code owner}
182 * Creates a dialog with an empty title and the specified modality and
209 * Creates a modeless dialog with the specified title and
224 * @param title the {@code String} to display in the dialog's
225 * title bar
231 public JDialog(Frame owner, String title) { argument
232 this(owner, title, false);
236 * Creates a dialog with the specified title, owner {@code Frame}
254 * @param title th
270 JDialog(Frame owner, String title, boolean modal) argument
320 JDialog(Frame owner, String title, boolean modal, GraphicsConfiguration gc) argument
392 JDialog(Dialog owner, String title) argument
420 JDialog(Dialog owner, String title, boolean modal) argument
458 JDialog(Dialog owner, String title, boolean modal, GraphicsConfiguration gc) argument
552 JDialog(Window owner, String title) argument
590 JDialog(Window owner, String title, Dialog.ModalityType modalityType) argument
635 JDialog(Window owner, String title, Dialog.ModalityType modalityType, GraphicsConfiguration gc) argument
[all...]
H A DJFrame.java187 * a screen device and a blank title.
210 * specified title.
215 * @param title the title for the frame
223 public JFrame(String title) throws HeadlessException { argument
224 super(title);
229 * Creates a <code>JFrame</code> with the specified title and the
235 * @param title the title to be displayed in the
249 public JFrame(String title, GraphicsConfiguratio argument
[all...]
H A DProgressMonitor.java178 public JDialog createDialog(Component parentComponent, String title) { argument
183 dialog = new JDialog((Frame)window, title, false);
185 dialog = new JDialog((Dialog)window, title, false);
H A DJOptionPane.java200 * <dt>title<dd>The title for the dialog box.
239 * message 'please choose one' and title information:
244 * <dt>Show a warning dialog with the options OK, CANCEL, title 'Warning', and
271 * JDialog dialog = pane.createDialog(<i>parentComponent, title</i>);
503 * <code>parentComponent</code> with the dialog having the title
504 * <code>title</code> and message type <code>messageType</code>.
509 * @param title the <code>String</code> to display in the dialog
510 * title bar
523 Object message, String title, in
522 showInputDialog(Component parentComponent, Object message, String title, int messageType) argument
565 showInputDialog(Component parentComponent, Object message, String title, int messageType, Icon icon, Object[] selectionValues, Object initialSelectionValue) argument
635 showMessageDialog(Component parentComponent, Object message, String title, int messageType) argument
664 showMessageDialog(Component parentComponent, Object message, String title, int messageType, Icon icon) argument
716 showConfirmDialog(Component parentComponent, Object message, String title, int optionType) argument
755 showConfirmDialog(Component parentComponent, Object message, String title, int optionType, int messageType) argument
793 showConfirmDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon) argument
854 showOptionDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon, Object[] options, Object initialValue) argument
916 createDialog(Component parentComponent, String title) argument
944 createDialog(String title) argument
951 createDialog(Component parentComponent, String title, int style) argument
1071 showInternalMessageDialog(Component parentComponent, Object message, String title, int messageType) argument
1096 showInternalMessageDialog(Component parentComponent, Object message, String title, int messageType, Icon icon) argument
1142 showInternalConfirmDialog(Component parentComponent, Object message, String title, int optionType) argument
1178 showInternalConfirmDialog(Component parentComponent, Object message, String title, int optionType, int messageType) argument
1217 showInternalConfirmDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon) argument
1272 showInternalOptionDialog(Component parentComponent, Object message, String title, int optionType, int messageType, Icon icon, Object[] options, Object initialValue) argument
1381 showInternalInputDialog(Component parentComponent, Object message, String title, int messageType) argument
1416 showInternalInputDialog(Component parentComponent, Object message, String title, int messageType, Icon icon, Object[] selectionValues, Object initialSelectionValue) argument
1504 createInternalFrame(Component parentComponent, String title) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTabbedPaneUI.java391 String title = tabPane.getTitleAt(tab);
399 tabContext, metrics, title, icon, SwingUtilities.CENTER,
641 String title = tabPane.getTitleAt(tabIndex);
646 layoutLabel(ss, tabPlacement, metrics, tabIndex, title, icon,
650 tabIndex, title, textRect, isSelected);
658 String title, Icon icon,
668 ss.getStyle().getGraphicsUtils(ss).layoutText(ss, metrics, title,
686 String title, Rectangle textRect,
699 ss.getStyle().getGraphicsUtils(ss).paintText(ss, g, title,
790 String title
656 layoutLabel(SynthContext ss, int tabPlacement, FontMetrics metrics, int tabIndex, String title, Icon icon, Rectangle tabRect, Rectangle iconRect, Rectangle textRect, boolean isSelected ) argument
683 paintText(SynthContext ss, Graphics g, int tabPlacement, Font font, FontMetrics metrics, int tabIndex, String title, Rectangle textRect, boolean isSelected) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DheapInspection.cpp184 KlassInfoHisto::KlassInfoHisto(const char* title) : argument
185 _title(title) {
216 st->print_cr("%s",title());
/openjdk7/jdk/src/share/classes/java/awt/
H A DDialog.java45 * A Dialog is a top-level window with a title and a border
274 * Specifies the title of the Dialog.
281 String title; field in class:Dialog
318 * the specified owner <code>Frame</code> and an empty title.
337 * owner <code>Frame</code> and modality and an empty title.
363 * the specified owner <code>Frame</code> and title.
367 * @param title the title of the dialog or <code>null</code> if this dialog
368 * has no title
378 public Dialog(Frame owner, String title) { argument
408 Dialog(Frame owner, String title, boolean modal) argument
441 Dialog(Frame owner, String title, boolean modal, GraphicsConfiguration gc) argument
479 Dialog(Dialog owner, String title) argument
509 Dialog(Dialog owner, String title, boolean modal) argument
545 Dialog(Dialog owner, String title, boolean modal, GraphicsConfiguration gc) argument
596 Dialog(Window owner, String title) argument
664 Dialog(Window owner, String title, ModalityType modalityType) argument
715 Dialog(Window owner, String title, ModalityType modalityType, GraphicsConfiguration gc) argument
883 setTitle(String title) argument
[all...]
H A DFrame.java44 * A <code>Frame</code> is a top-level window with a title and a border.
70 * {@link #Frame(String title, GraphicsConfiguration)}. The
293 * This is the title of the frame. It can be changed
294 * at any time. <code>title</code> can be null and if
295 * this is the case the <code>title</code> = "".
301 String title = "Untitled"; field in class:Frame
376 * initially invisible. The title of the <code>Frame</code>
409 * with the specified title.
410 * @param title the title t
420 Frame(String title) argument
445 Frame(String title, GraphicsConfiguration gc) argument
450 init(String title, GraphicsConfiguration gc) argument
509 setTitle(String title) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DPlatformWindow.java59 * Sets the window title
61 public void setTitle(String title); argument
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformEmbeddedFrame.java135 public void setTitle(String title) {} argument
H A DCViewPlatformEmbeddedFrame.java91 public void setTitle(String title) { argument
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerFactoryImpl.java161 public PIParamWrapper(String media, String title, String charset) { argument
163 _title = title;
586 * @param title The value of the title attribute to match. May be null.
592 String title, String charset)
603 StylesheetPIHandler _stylesheetPIHandler = new StylesheetPIHandler(null,media,title,charset);
591 getAssociatedStylesheet(Source source, String media, String title, String charset) argument
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletViewer.java55 TextFrame(int x, int y, String title, String text) { argument
56 setTitle(title);
162 setTitle(amh.getMessage("tool.title", atts.get("code")));
/openjdk7/jdk/src/share/classes/sun/awt/
H A DEmbeddedFrame.java310 public void setTitle(String title) {} argument
523 public void setTitle(String title) {} argument
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe.cpp505 static void print_stack_values(const char* title, StackValueCollection* values) { argument
507 tty->print_cr("\t%s:", title);

Completed in 1285 milliseconds

123456