class PictureParameters {
  public int thumbWidthLimit  = 165;
  public int thumbHeightLimit = 165;

  public int pageWidthLimit  = 725;
  public int pageHeightLimit = 725;

  public int thumbsPerRow = 4;
  public int cellSpacing = 12;

  public String style = null;

  public String toString() {
    return
      "thumbWidthLimit = " + thumbWidthLimit +
      "\nthumbHeightLimit = " + thumbHeightLimit +
      "\npageWidthLimit = " + pageWidthLimit +
      "\npageHeightLimit = " + pageHeightLimit +
      "\nthumbsPerRow = " + thumbsPerRow +
      "\ncellSpacing = " + cellSpacing +
      "\nstyle = " + style;
  }
}

