Searched refs:title (Results 51 - 75 of 202) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/javax/swing/
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...]
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...]
/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest6541987.java89 String title = getClass().getName();
90 JFrame frame = new JFrame(title);
93 Color color = JColorChooser.showDialog(frame, title, Color.BLACK);
H A DTest7194184.java104 String title = getClass().getName();
105 frame = new JFrame(title);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneContrastUI.java50 protected void paintTitle(final Graphics2D g2d, final Font font, final FontMetrics metrics, final Rectangle textRect, final int tabIndex, final String title) { argument
57 if (title == null) return;
67 AquaUtils.paintDropShadowText(g2d, tabPane, font, metrics, textRect.x, textRect.y, 0, 1, textColor, shadowColor, title);
74 SwingUtilities2.drawString(tabPane, g2d, title, textRect.x, textRect.y + metrics.getAscent());
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlStyle.java73 title, enum constant in enum:HtmlStyle
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DReachableQuery.java77 private void printFields(String[] fields, String title) { argument
82 print(title);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dtimer.hpp89 TraceTime(const char* title,
91 TraceTime(const char* title,
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/jdk/test/sun/security/rsa/
H A DInvalidBitString.java122 String title, boolean expected) throws Exception {
123 System.out.print("Checking " + title + ": expected: " +
121 test(Certificate target, Certificate signer, String title, boolean expected) argument
/openjdk7/jdk/src/share/classes/sun/awt/im/
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);
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);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifPopupMenuUI.java70 /* This has to deal with the fact that the title may be wider than
76 String title = ((JPopupMenu)c).getLabel();
84 if (title!=null) {
85 stringWidth += SwingUtilities2.stringWidth(c, fm, title);
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);
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCMenu.m70 - (void)setJavaMenuTitle:(NSString *)title {
72 if (title) {
73 [ThreadUtilities performOnMainThread:@selector(setNativeMenuTitle_OnAppKitThread:) on:self withObject:title waitUntilDone:YES];
77 - (void)setNativeMenuTitle_OnAppKitThread:(NSString *)title {
80 [fMenu setTitle:title];
86 [menuItem setTitle:title];
231 // Set the menu's title.
H A DCFileDialog.h39 // Dialog's title
65 title:(NSString *)inTitle
/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/rmi/reliability/benchmark/bench/serial/
H A DMain.java238 String title = "Object Serialization Benchmark, v" + VERSION;
241 reporter = new TextReporter(repstr, title);
245 reporter = new HtmlReporter(repstr, title);
249 reporter = new XmlReporter(repstr, title);
/openjdk7/jdk/src/macosx/native/jobjc/src/tests/java/com/apple/jobjc/
H A DBaseBench.java41 public void bench(final String title, final long warmup, final long runs, final long iterations, final Task... tasks){ argument
66 System.out.format("\n* %1$s\n", title);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DSingleIndexWriter.java87 String title = configuration.getText("doclet.Window_Single_Index");
88 Content body = getBody(true, getWindowTitle(title));
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DMetaKeywords.java108 public String[] getOverviewMetaKeywords(String title, String docTitle) { argument
110 String windowOverview = configuration.getText(title);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DStylesheetPIHandler.java51 /** The desired title criteria. */
98 * @param title The desired title criteria.
101 public StylesheetPIHandler(String baseID, String media, String title, argument
107 m_title = title;
150 String title = null; // CDATA #IMPLIED
230 else if (name.equals("title"))
236 title = token.substring(1, token.length() - 1);
294 if (null != title)
296 if (!title
[all...]
/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
/openjdk7/jdk/src/share/classes/sun/misc/
H A DExtensionInfo.java62 public String title; field in class:ExtensionInfo
114 title = attr.getValue(attrKey);
115 if (title != null)
116 title = title.trim();
211 return "Extension : title(" + title + "), name(" + name + "), spec vendor(" +
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/resources/
H A Djconsole.js673 * @param title title of message box [optional]
676 function msgBox(msg, title, msgType) {
682 if (title == undefined) title = msg;
684 JOptionPane.showMessageDialog(window, msg, title, msgType);
698 * @param title title of message box [optional]
700 function alert(msg, title) {
702 msgBox(msg, title, JOptionPan
[all...]

Completed in 71 milliseconds

123456789