>>>>> "Lillian" == Lillian Angel <[EMAIL PROTECTED]> writes:

Lillian>         * java/awt/FileDialog.java
Lillian>         (FileDialog): Implemented.
Lillian>         (FileDialog): Implemented.
Lillian>         (FileDialog): Implemented.

Lillian> +  /**
Lillian> +   * Initialized a new instance of <code>FileDialog</code> with the
Lillian> +   * specified parent and title.  This dialog will be for opening a 
file.
Lillian> +   *
Lillian> +   * @param parent The parent dialog for this.
Lillian> +   * @param title The title for this dialog.
Lillian> +   */
Lillian> +  public FileDialog(Dialog parent, String title)
Lillian> +  {
Lillian> +    this(parent, title, LOAD);
Lillian> +  }


New things from 1.5 should be marked '@since 1.5' in their javadoc.

Tom

Reply via email to