Coverage Report - br.mia.test.view.factory.ItemScroll
 
Classes in this File Line Coverage Branch Coverage Complexity
ItemScroll
0%
0/4
N/A
1
 
 1  
 package br.mia.test.view.factory;
 2  
 
 3  
 import javax.swing.JScrollPane;
 4  
 
 5  0
 public class ItemScroll extends ItemTela {
 6  
 
 7  
         private JScrollPane scroll;
 8  
 
 9  
         public JScrollPane getScroll() {
 10  0
                 return scroll;
 11  
         }
 12  
 
 13  
         public void setScroll(JScrollPane scroll) {
 14  0
                 this.scroll = scroll;
 15  0
         }
 16  
 
 17  
 }