Coverage Report - no.sesat.mojo.modes.ConfigAbstract
 
Classes in this File Line Coverage Branch Coverage Complexity
ConfigAbstract
0%
0/2
0%
0/4
1
 
 1  
 package no.sesat.mojo.modes;
 2  
 
 3  
 /**
 4  
  *
 5  
  *
 6  
  */
 7  0
 public class ConfigAbstract {
 8  
     protected String doc;
 9  
     protected String name;
 10  
 
 11  
     /**
 12  
      * @return true if it has documentation.
 13  
      */
 14  
     public boolean hasDoc() {
 15  0
         return (doc != null && !doc.trim().isEmpty());
 16  
     }
 17  
 }