| 1 | 
    
            
    
     | 
    
      package org.kuali.spring.util.bean;     | 
  
            
  
    | 2 | 
    
            
    
     | 
    
           | 
  
               
        | 
             
         | 
        
       
        | 
       
           
           
            | 0% | 
           Uncovered Elements: 12 (12) | 
           Complexity: 6 | 
           Complexity Density: 1 | 
                        
            
        | 
    
  
  
    | 3 | 
    
            
    
     | 
    
      public class Cat {     | 
  
            
  
    | 4 | 
    
            
    
     | 
    
          String prey;     | 
  
            
  
    | 5 | 
    
            
    
     | 
    
          String actions;     | 
  
            
  
    | 6 | 
    
            
    
     | 
    
          String speed;     | 
  
            
  
    | 7 | 
    
            
    
     | 
    
           | 
  
               
        | 
             
         | 
        
       
        | 
       
           
           
            | 0% | 
           Uncovered Elements: 1 (1) | 
           Complexity: 1 | 
           Complexity Density: 1 | 
                        
            
        | 
    
  
  
    | 8 | 
    
           0
    
     | 
    
           public String getPrey() {...     | 
  
            
  
    | 9 | 
    
           0
    
     | 
    
              return prey;     | 
  
            
  
    | 10 | 
    
            
    
     | 
    
          }     | 
  
            
  
    | 11 | 
    
            
    
     | 
    
           | 
  
               
        | 
             
         | 
        
       
        | 
       
           
           
            | 0% | 
           Uncovered Elements: 1 (1) | 
           Complexity: 1 | 
           Complexity Density: 1 | 
                        
            
        | 
    
  
  
    | 12 | 
    
           0
    
     | 
    
           public void setPrey(String prey) {...     | 
  
            
  
    | 13 | 
    
           0
    
     | 
    
              this.prey = prey;     | 
  
            
  
    | 14 | 
    
            
    
     | 
    
          }     | 
  
            
  
    | 15 | 
    
            
    
     | 
    
           | 
  
               
        | 
             
         | 
        
       
        | 
       
           
           
            | 0% | 
           Uncovered Elements: 1 (1) | 
           Complexity: 1 | 
           Complexity Density: 1 | 
                        
            
        | 
    
  
  
    | 16 | 
    
           0
    
     | 
    
           public String getActions() {...     | 
  
            
  
    | 17 | 
    
           0
    
     | 
    
              return actions;     | 
  
            
  
    | 18 | 
    
            
    
     | 
    
          }     | 
  
            
  
    | 19 | 
    
            
    
     | 
    
           | 
  
               
        | 
             
         | 
        
       
        | 
       
           
           
            | 0% | 
           Uncovered Elements: 1 (1) | 
           Complexity: 1 | 
           Complexity Density: 1 | 
                        
            
        | 
    
  
  
    | 20 | 
    
           0
    
     | 
    
           public void setActions(String actions) {...     | 
  
            
  
    | 21 | 
    
           0
    
     | 
    
              this.actions = actions;     | 
  
            
  
    | 22 | 
    
            
    
     | 
    
          }     | 
  
            
  
    | 23 | 
    
            
    
     | 
    
           | 
  
               
        | 
             
         | 
        
       
        | 
       
           
           
            | 0% | 
           Uncovered Elements: 1 (1) | 
           Complexity: 1 | 
           Complexity Density: 1 | 
                        
            
        | 
    
  
  
    | 24 | 
    
           0
    
     | 
    
           public String getSpeed() {...     | 
  
            
  
    | 25 | 
    
           0
    
     | 
    
              return speed;     | 
  
            
  
    | 26 | 
    
            
    
     | 
    
          }     | 
  
            
  
    | 27 | 
    
            
    
     | 
    
           | 
  
               
        | 
             
         | 
        
       
        | 
       
           
           
            | 0% | 
           Uncovered Elements: 1 (1) | 
           Complexity: 1 | 
           Complexity Density: 1 | 
                        
            
        | 
    
  
  
    | 28 | 
    
           0
    
     | 
    
           public void setSpeed(String speed) {...     | 
  
            
  
    | 29 | 
    
           0
    
     | 
    
              this.speed = speed;     | 
  
            
  
    | 30 | 
    
            
    
     | 
    
          }     | 
  
            
  
    | 31 | 
    
            
    
     | 
    
      }     |