| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| FilterMicroSet |
|
| 1.0;1 |
| 1 | /****************************************************************************** | |
| 2 | * FilterMicroSet.java - Define an entry in the FilterMicroSet table | |
| 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 | /** Define an entry in the FilterMicroSet table | |
| 11 | * @author Dick Balaska | |
| 12 | */ | |
| 13 | 0 | public class FilterMicroSet { |
| 14 | private int sid; | |
| 15 | private int pid; | |
| 16 | private int value; | |
| 17 | /** | |
| 18 | * @return the sid | |
| 19 | */ | |
| 20 | public int getSid() { | |
| 21 | 0 | return sid; |
| 22 | } | |
| 23 | /** | |
| 24 | * @param sid the sid to set | |
| 25 | */ | |
| 26 | public void setSid(int sid) { | |
| 27 | 0 | this.sid = sid; |
| 28 | 0 | } |
| 29 | /** | |
| 30 | * @return the pid | |
| 31 | */ | |
| 32 | public int getPid() { | |
| 33 | 0 | return pid; |
| 34 | } | |
| 35 | /** | |
| 36 | * @param pid the pid to set | |
| 37 | */ | |
| 38 | public void setPid(int pid) { | |
| 39 | 0 | this.pid = pid; |
| 40 | 0 | } |
| 41 | /** | |
| 42 | * @return the value | |
| 43 | */ | |
| 44 | public int getValue() { | |
| 45 | 0 | return value; |
| 46 | } | |
| 47 | /** | |
| 48 | * @param value the value to set | |
| 49 | */ | |
| 50 | public void setValue(int value) { | |
| 51 | 0 | this.value = value; |
| 52 | 0 | } |
| 53 | ||
| 54 | ||
| 55 | } |