Coverage Report - com.buckosoft.PicMan.web.ScanForNewPicsForm
 
Classes in this File Line Coverage Branch Coverage Complexity
ScanForNewPicsForm
0%
0/8
N/A
1
 
 1  
 /******************************************************************************
 2  
  * ScanForNewPicsForm.java - A bean to wrap the Setup in a form friendly package
 3  
  * 
 4  
  * PicMan - The BuckoSoft Picture Manager in Java
 5  
  * Copyright(c) 2005 - Dick Balaska
 6  
  * 
 7  
  */
 8  
 package com.buckosoft.PicMan.web;
 9  
 
 10  
 import com.buckosoft.BSAccount.web.BSAccountUserWebSession;
 11  
 import com.buckosoft.PicMan.business.NewPicScanner;
 12  
 import com.buckosoft.PicMan.domain.System;
 13  
 
 14  
 /**
 15  
  * @author Dick Balaska
 16  
  */
 17  
 public class ScanForNewPicsForm {
 18  
 
 19  
         private        System                        system;
 20  
         private        BSAccountUserWebSession        userWebSession;
 21  
         private        NewPicScanner        newPicScanner;
 22  
 
 23  0
         public ScanForNewPicsForm() {
 24  0
         }
 25  
 
 26  0
         public        BSAccountUserWebSession        getUserWebSession() { return(userWebSession); }
 27  0
         public        void                setUserWebSession(BSAccountUserWebSession us) { userWebSession = us; }
 28  
 
 29  0
         public System                getSystem() { return(system); }
 30  0
         public void                        setSystem(System sys) { system = sys; }
 31  
         
 32  0
         public void                                setNewPicScanner(NewPicScanner nps) { newPicScanner = nps; }
 33  0
         public NewPicScanner        getNewPicScanner() { return(newPicScanner); }
 34  
         
 35  
 
 36  
 }