Searched defs:title (Results 101 - 125 of 137) sorted by relevance

123456

/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWFileDialogPeer.java243 public void setTitle(String title) {} argument
H A DWWindowPeer.java146 public void setTitle(String title) { argument
147 // allow a null title to pass as an empty string.
148 if (title == null) {
149 title = "";
151 _setTitle(title);
153 native void _setTitle(String title); argument
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DJConsole.java85 private final static String title = field in class:JConsole
111 super(title);
182 // Restore title - we now show connection name on internal frames
183 setTitle(title);
1098 // GTK L&F use hardcoded color and font for the title
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXMBeanAttributes.java1063 private void popupAndLog(Throwable ex, String method, String title) { argument
1071 title,
/openjdk7/jdk/src/share/demo/applets/SpreadSheet/
H A DSpreadSheet.java52 String title; field in class:SpreadSheet
80 title = getParameter("title");
81 if (title == null) {
82 title = "Spreadsheet";
251 i = g.getFontMetrics().stringWidth(title);
252 g.drawString((title == null) ? "Spreadsheet" : title,
397 { "title", "string",
398 "The title o
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/report/
H A DJ2DAnalyzer.java328 String title = getStringAttribute(rsline, "name");
329 if (title == null) {
330 title = "No title";
333 srs.setTitle(title);
458 private String title; field in class:J2DAnalyzer.ResultSetHolder
460 public void setTitle(String title) { argument
461 this.title = title;
465 return title;
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXFileDialogPeer.java56 String title; field in class:XFileDialogPeer
140 this.title = target.getTitle();
H A DXDecoratedPeer.java182 public void setTitle(String title) { argument
183 if (log.isLoggable(PlatformLogger.FINE)) log.fine("Title is " + title);
184 winAttr.title = title;
189 if (winAttr.title == null || winAttr.title.trim().equals("")) {
192 return winAttr.title;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DParser.java519 * @param title The value of the title attribute to match. May be null.
522 protected void setPIParameters(String media, String title, String charset) { argument
524 _PItitle = title;
1379 String title = null; // Title of stylesheet found
1390 else if (token.startsWith("title"))
1391 title = getTokenValue(token);
1399 ((_PItitle == null) || (_PImedia.equals(title))) &&
H A DXSLTC.java300 * @param title The value of the title attribute to match. May be null.
303 public void setPIParameters(String media, String title, String charset) { argument
304 _parser.setPIParameters(media, title, charset);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DBugSpot.java892 private void showMessageDialog(final String message, final String title, final int jOptionPaneKind) { argument
896 JOptionPane.showInternalMessageDialog(desktop, message, title, jOptionPaneKind);
898 JOptionPane.showMessageDialog(null, message, title, jOptionPaneKind);
904 private FrameWrapper newFrame(String title) { argument
906 return new JInternalFrameWrapper(new JInternalFrame(title));
908 return new JFrameWrapper(new JFrame(title));
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJInternalFrame.java50 * resizing, title display, and support for a menu bar.
174 /** The title displayed in this internal frame's title bar. */
175 protected String title; field in class:JInternalFrame
203 public final static String TITLE_PROPERTY = "title";
266 * non-iconifiable <code>JInternalFrame</code> with no title.
274 * non-iconifiable <code>JInternalFrame</code> with the specified title.
275 * Note that passing in a <code>null</code> <code>title</code> results in
278 * @param title the non-<code>null</code> <code>String</code>
279 * to display in the title ba
281 JInternalFrame(String title) argument
293 JInternalFrame(String title, boolean resizable) argument
306 JInternalFrame(String title, boolean resizable, boolean closable) argument
320 JInternalFrame(String title, boolean resizable, boolean closable, boolean maximizable) argument
336 JInternalFrame(String title, boolean resizable, boolean closable, boolean maximizable, boolean iconifiable) argument
1048 setTitle(String title) argument
[all...]
H A DJTabbedPane.java44 * clicking on a tab with a given title and/or icon.
62 * The tab title can be rendered by a <code>Component</code>.
65 * // In this case the look and feel renders the title for the tab.
68 * // title of the tab.
683 * represented by the given title and/or icon, either of which may
686 * @param title the title to be displayed on the tab
699 public void insertTab(String title, Icon icon, Component component, String tip, int index) { argument
720 new Page(this, title != null? title
766 addTab(String title, Icon icon, Component component, String tip) argument
782 addTab(String title, Icon icon, Component component) argument
797 addTab(String title, Component component) argument
833 add(String title, Component component) argument
1315 setTitleAt(int index, String title) argument
1681 indexOfTab(String title) argument
2034 String title; field in class:JTabbedPane.Page
2048 Page(JTabbedPane parent, String title, Icon icon, Icon disabledIcon, Component component, String tip) argument
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DcodeCache.cpp78 void print(const char* title) { argument
81 title,
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneUI.java274 final String title;
278 title = null;
283 title = tabPane.getTitleAt(tabIndex);
286 title = null;
300 layoutLabel(tabPlacement, metrics, tabIndex < 0 ? 0 : tabIndex, title, icon, fContentRect, iconRect, textRect, false); // Never give it "isSelected" - ApprMgr handles this
322 paintTitle(g2d, font, metrics, textRect, tabIndex, title);
336 protected void paintTitle(final Graphics2D g2d, final Font font, final FontMetrics metrics, final Rectangle textRect, final int tabIndex, final String title) { argument
343 if (title == null) return;
358 SwingUtilities2.drawString(tabPane, g2d, title, textRect.x, textRect.y + metrics.getAscent());
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCFileDialog.java54 String title = target.getTitle();
55 if (title == null) {
56 title = " ";
61 String[] userFileNames = nativeRunFileDialog(title,
149 private native String[] nativeRunFileDialog(String title, int mode, argument
175 public void setTitle(String title) { argument
H A DCPlatformWindow.java59 private static native void nativeSetNSWindowTitle(long nsWindowPtr, String title); argument
633 public void setTitle(String title) { argument
634 nativeSetNSWindowTitle(getNSWindowPtr(), title);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java150 void genHTMLPrologue(String title) { argument
152 append("<html><head><title>");
153 append(title);
154 append("</title></head>");
157 h2(title);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunToolkit.java1083 public Window createInputMethodWindow(String title, InputContext context) { argument
1084 return new sun.awt.im.SimpleInputMethodWindow(title, context);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWWindowPeer.java573 public void setTitle(String title) { argument
574 platformWindow.setTitle(title == null ? "" : title);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dfprofiler.cpp1301 void print_ticks(const char* title, int ticks, int total) { argument
1305 tty->print("%s", title);
1323 const char* title = "too soon to tell"; local
1371 title = "Total interpreted";
1373 title = "Total interpreted (including elided)";
1375 interpretedNode::print_total(tty, &interpreted_ticks, active, title);
1398 title = "Total compiled";
1400 title = "Total compiled (including elided)";
1402 compiledNode::print_total(tty, &compiled_ticks, active, title);
1425 title
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDocletWriter.java349 * Print the html file header. Also print Html page title and stylesheet
352 * @param title String window title to go in the &lt;TITLE&gt; tag
359 public void printHtmlHeader(String title, String[] metakeywords, argument
377 title += " (" + configuration.windowtitle + ")";
379 title(title);
380 println(title);
400 printWinTitleScript(title);
454 * Get the window title
459 getWindowTitle(String title) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlWriter.java50 * The window title of this file
275 println(" parent.document.title=\"" + winTitle + "\";");
295 " parent.document.title=\"" + winTitle + "\";" + DocletConstants.NL +
405 * of the document in the window title bar when frames are on.
422 * @param title title for the window
425 public HtmlTree getBody(boolean includeScript, String title) { argument
427 // Set window title string which is later printed
428 this.winTitle = title;
450 public void title() { method in class:HtmlWriter
459 public void title(String winTitle) { method in class:HtmlWriter
[all...]
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java2879 private static void printExtensions(String title, CertificateExtensions exts, PrintStream out) argument
2888 out.println(title);
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPrinterJob.java2172 public EPSPrinter(Printable printable, String title, argument
2177 this.epsTitle = title;

Completed in 168 milliseconds

123456