Coverage report

  %line %branch
net.sf.infrared.web.formbean.PerfDataSummaryBean
0% 
0% 

 1  
 /*
 2  
  *
 3  
  * Copyright 2005 Tavant Technologies and Contributors
 4  
  * 
 5  
  * Licensed under the Apache License, Version 2.0 (the "License")
 6  
  * you may not use this file except in compliance with the License.
 7  
  * You may obtain a copy of the License at
 8  
  *
 9  
  *     http://www.apache.org/licenses/LICENSE-2.0
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  *
 17  
  *
 18  
  *
 19  
  * Original Author:  prashant.nair (Tavant Technologies)
 20  
  * Contributor(s):   -;
 21  
  *
 22  
  */
 23  
 package net.sf.infrared.web.formbean;
 24  
 
 25  
 import java.util.ArrayList;
 26  
 import java.util.Set;
 27  
 
 28  
 import org.apache.struts.action.ActionForm;
 29  
 
 30  0
 public class PerfDataSummaryBean extends ActionForm {
 31  
     public Set applicationName;
 32  
 
 33  
     public Set instanceName;
 34  
 
 35  
     public Set selectedApplications;
 36  
 
 37  
     public Set selectedInstances;
 38  
 
 39  
     public ArrayList layerTimes;
 40  
     
 41  
     public ArrayList absoluteLayerTimes;
 42  
 
 43  
     public Set getApplicationName() {
 44  0
         return applicationName;
 45  
     }
 46  
 
 47  
     public void setApplicationName(Set applicationName) {
 48  0
         this.applicationName = applicationName;
 49  0
     }
 50  
 
 51  
     public Set getInstanceName() {
 52  0
         return instanceName;
 53  
     }
 54  
 
 55  
     public void setInstanceName(Set instanceName) {
 56  0
         this.instanceName = instanceName;
 57  0
     }
 58  
 
 59  
     public Set getSelectedApplications() {
 60  0
         return selectedApplications;
 61  
     }
 62  
 
 63  
     public void setSelectedApplications(Set selectedApplications) {
 64  0
         this.selectedApplications = selectedApplications;
 65  0
     }
 66  
 
 67  
     public Set getSelectedInstances() {
 68  0
         return selectedInstances;
 69  
     }
 70  
 
 71  
     public void setSelectedInstances(Set selectedInstances) {
 72  0
         this.selectedInstances = selectedInstances;
 73  0
     }
 74  
 
 75  
     public ArrayList getLayerTimes() {
 76  0
         return layerTimes;
 77  
     }
 78  
 
 79  
     public void setLayerTimes(ArrayList layerTimes) {
 80  0
         this.layerTimes = layerTimes;
 81  0
     }
 82  
 
 83  
     public ArrayList getAbsoluteLayerTimes() {
 84  0
         return absoluteLayerTimes;
 85  
     }
 86  
 
 87  
     public void setAbsoluteLayerTimes(ArrayList absoluteLayerTimes) {
 88  0
         this.absoluteLayerTimes = absoluteLayerTimes;
 89  0
     }
 90  
     
 91  
     
 92  
 
 93  
 }

This report is generated by jcoverage, Maven and Maven JCoverage Plugin.