示例#1
0
  /** Method to show the picture in a picture frame */
  public void show() {
    // if there is a current picture frame then use it
    if (pictureFrame != null) pictureFrame.updateImageAndShowIt();

    // else create a new picture frame with this picture
    else pictureFrame = new PictureFrame(this);
  }