Coverage Report - com.buckosoft.PicMan.domain.Virgin
 
Classes in this File Line Coverage Branch Coverage Complexity
Virgin
0%
0/3
N/A
1
 
 1  
 /******************************************************************************
 2  
  * Virgin.java - A Pic that hasn't been filtered yet
 3  
  * 
 4  
  * PicMan - The BuckoSoft Picture Manager in Java
 5  
  * Copyright(c) 2005 - Dick Balaska
 6  
  * 
 7  
  */
 8  
 package com.buckosoft.PicMan.domain;
 9  
 
 10  
 
 11  
 /**
 12  
  * A Pic that hasn't been filtered yet
 13  
  * @author dick
 14  
  *
 15  
  */
 16  0
 public class Virgin {
 17  
         private        String        name;
 18  
         
 19  0
         public        void        setName(String name) { this.name = name; }
 20  0
         public        String        getName() { return(name); }
 21  
         
 22  
         /** for jsp, i don't see how to pass parameters to a singleton,
 23  
          *  so dumb objects need to get to the singleton calling it with 'this' as a parameter
 24  
          */
 25  
 /*        public String                getPicFilterWebEdit() {
 26  
                 return(pmf.getPicFilterWebEdit(this.name));
 27  
         }
 28  
 */
 29  
 }