1 /******************************************************************************
2 * SetSizeCount - Helper class for the FilterReportSummaryPage
3 *
4 * PicMan - The BuckoSoft Picture Manager in Java
5 * Copyright(c) 2008 - Dick Balaska
6 *
7 */
8 package com.buckosoft.PicMan.domain;
9
10 /** Helper class for the FilterReportSummaryPage
11 * @author Dick Balaska
12 */
13 public class SetSizeCount {
14 private String name;
15 private int[] counts;
16
17 public SetSizeCount(int sizeCount) {
18 counts = new int[sizeCount];
19 }
20 public void setValue(int index, int value) {
21 counts[index] = value;
22 }
23 public void setName(String name) {
24 this.name = name;
25 }
26 public String getName() {
27 return(this.name);
28 }
29 public int[] getCounts() {
30 return(counts);
31 }
32
33 }