Searched refs:title (Results 101 - 125 of 287) sorted by relevance

1234567891011>>

/openjdk9/jdk/test/java/rmi/reliability/benchmark/bench/rmi/
H A DMain.java124 Reporter getReport(String title) {
125 return new TextReporter(repstr, title);
131 Reporter getReport(String title) {
132 return new HtmlReporter(repstr, title);
137 Reporter getReport(String title) {
138 return new XmlReporter(repstr, title);
142 abstract Reporter getReport(String title); argument
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifInternalFrameTitlePane.java41 * Class that manages a Motif title bar
53 Title title; field in class:MotifInternalFrameTitlePane
58 // The width and height of a title pane button
147 title = new Title(frame.getTitle());
148 title.setFont(getFont());
151 add(title);
223 title.setBounds(BUTTON_SIZE, 0, x, BUTTON_SIZE);
328 Title(String title) { argument
330 setText(title);
H A DMotifDesktopIconUI.java259 String title = frame.getTitle();
262 if (title != null) {
263 w += SwingUtilities2.stringWidth(frame, fm, title);
289 String title = frame.getTitle();
290 if (title != null) {
291 SwingUtilities2.drawString(frame, g, title, 4, y);
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/
H A DJInternalFrame.java48 * resizing, title display, and support for a menu bar.
172 /** The title displayed in this internal frame's title bar. */
173 protected String title; field in class:JInternalFrame
201 public static final String TITLE_PROPERTY = "title";
264 * non-iconifiable <code>JInternalFrame</code> with no title.
272 * non-iconifiable <code>JInternalFrame</code> with the specified title.
273 * Note that passing in a <code>null</code> <code>title</code> results in
276 * @param title the non-<code>null</code> <code>String</code>
277 * to display in the title ba
279 JInternalFrame(String title) argument
291 JInternalFrame(String title, boolean resizable) argument
304 JInternalFrame(String title, boolean resizable, boolean closable) argument
318 JInternalFrame(String title, boolean resizable, boolean closable, boolean maximizable) argument
334 JInternalFrame(String title, boolean resizable, boolean closable, boolean maximizable, boolean iconifiable) argument
1010 setTitle(String title) 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...]
/openjdk9/jdk/src/jdk.jconsole/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.
/openjdk9/hotspot/src/share/vm/gc/g1/
H A DworkerDataArray.inline.hpp33 WorkerDataArray<T>::WorkerDataArray(uint length, const char* title) : argument
34 _title(title),
113 out->print("%-25s", title());
H A DconcurrentMarkThread.cpp99 G1ConcPhaseTimer(G1ConcurrentMark* cm, const char* title) : argument
100 GCTraceConcTimeImpl<LogLevel::Info, LogTag::_gc, LogTag::_marking>(title),
102 _cm->gc_timer_cm()->register_gc_concurrent_start(title);
/openjdk9/jaxp/test/javax/xml/jaxp/unittest/transform/util/
H A DTransformerTestTemplate.java96 // print an XML Snippet under a given title
97 public void printSnippet(String title, String snippet) { argument
99 for (int i = 0; i < title.length(); i++)
101 System.out.println(title + "\n" + div + "\n" + snippet + "\n");
/openjdk9/langtools/test/jdk/javadoc/doclet/testHtmlDocument/
H A DTestHtmlDocument.java75 HtmlTree title = new HtmlTree(HtmlTag.TITLE);
78 title.addContent(titleContent);
79 head.addContent(title);
/openjdk9/langtools/test/com/sun/javadoc/testHtmlDocument/
H A DTestHtmlDocument.java71 HtmlTree title = new HtmlTree(HtmlTag.TITLE);
74 title.addContent(titleContent);
75 head.addContent(title);
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/formats/html/
H A DTreeWriter.java108 HtmlStyle.title, headContent);
183 String title = configuration.getText("doclet.Window_Class_Hierarchy");
184 HtmlTree bodyTree = getBody(true, getWindowTitle(title));
H A DPackageTreeWriter.java124 HtmlStyle.title, headContent);
157 String title = packagedoc.name() + " " +
159 HtmlTree bodyTree = getBody(true, getWindowTitle(title));
H A DSingleIndexWriter.java95 String title = configuration.getText("doclet.Window_Single_Index");
96 HtmlTree body = getBody(true, getWindowTitle(title));
/openjdk9/jdk/src/demo/share/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...]
/openjdk9/hotspot/src/jdk.hotspot.agent/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 + ":");
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/metal/
H A DMetalDesktopIconUI.java76 String title = frame.getTitle();
78 button = new JButton (title, icon);
144 if (e.getPropertyName().equals("title")) {
/openjdk9/jdk/test/java/awt/PrintJob/PageSetupDlgBlockingTest/
H A DPageSetupDlgBlockingTest.java107 TestFrame(String title) { argument
108 super(title);
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/
H A DMetaKeywords.java128 public List<String> getOverviewMetaKeywords(String title, String docTitle) { argument
131 String windowOverview = config.getText(title);
/openjdk9/jdk/test/javax/management/notification/
H A DBroadcasterSupportDeadlockTest.java136 private static void showStackTrace(String title, argument
138 System.out.println("---" + title + "---");
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/jrtfs/
H A Djrtfsviewer.js112 stage.title = "jrt fs viewer";
/openjdk9/hotspot/test/native/gc/g1/
H A Dtest_workerDataArray.cpp36 title("Test array"),
37 array(3, title) {
53 return prepend_with(title, expected_summary());
65 const char* title; member in class:WorkerDataArrayTest
/openjdk9/jaxp/src/java.xml/share/classes/javax/xml/transform/
H A DTransformerFactory.java251 * @param title The value of the title attribute to match. May be null.
267 String title,
264 getAssociatedStylesheet( Source source, String media, String title, String charset) argument
/openjdk9/jaxp/test/javax/xml/jaxp/module/ServiceProviderTest/src/xmlprovider1/xp1/
H A DTransformerFactoryImpl.java52 public Source getAssociatedStylesheet(Source source, String media, String title, String charset) argument
/openjdk9/jdk/src/java.desktop/macosx/classes/sun/lwawt/
H A DPlatformWindow.java59 * Sets the window title
61 public void setTitle(String title); argument

Completed in 299 milliseconds

1234567891011>>