Coverage Report - no.sesat.mojo.modes.NameFilter
 
Classes in this File Line Coverage Branch Coverage Complexity
NameFilter
N/A
N/A
1
 
 1  
 package no.sesat.mojo.modes;
 2  
 
 3  
 /**
 4  
  * Function wrapper.
 5  
  *
 6  
  */
 7  
 public interface NameFilter {
 8  
 
 9  
     /**
 10  
      * @param string
 11  
      *            String that we want to be filtered.
 12  
      * @return The filtered string.
 13  
      */
 14  
     String filter(String string);
 15  
 }