Lines Matching refs:title
44 * 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";
376 * initially invisible. The title of the <code>Frame</code>
409 * with the specified title.
410 * @param title the title to be displayed in the frame's border.
420 public Frame(String title) throws HeadlessException {
421 init(title, null);
426 * with the specified title and a
428 * @param title the title to be displayed in the frame's border.
445 public Frame(String title, GraphicsConfiguration gc) {
447 init(title, gc);
450 private void init(String title, GraphicsConfiguration gc) {
451 this.title = title;
492 * Gets the title of the frame. The title is displayed in the
494 * @return the title of this frame, or an empty string ("")
495 * if this frame doesn't have a title.
499 return title;
503 * Sets the title for this frame to the specified string.
504 * @param title the title to be displayed in the frame's border.
509 public void setTitle(String title) {
510 String oldTitle = this.title;
511 if (title == null) {
512 title = "";
517 this.title = title;
520 peer.setTitle(title);
523 firePropertyChange("title", oldTitle, title);
1064 if (title != null) {
1065 str += ",title=" + title;