Coverage Report - org.kuali.rice.core.api.uif.Watermarked
 
Classes in this File Line Coverage Branch Coverage Complexity
Watermarked
N/A
N/A
1
 
 1  
 package org.kuali.rice.core.api.uif;
 2  
 
 3  
 /**
 4  
  * A Control with a watermark.
 5  
  */
 6  
 public interface Watermarked {
 7  
 
 8  
     /**
 9  
      * The watermark value to put on a control.  This field can be null.
 10  
      *
 11  
      * @return the watermark value or null.
 12  
      */
 13  
     String getWatermark();
 14  
 }