Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
HasWatermark |
|
| 1.0;1 |
1 | package org.kuali.student.common.ui.client.widgets; | |
2 | ||
3 | /** | |
4 | * Widgets which can have watermark text must implement this interface | |
5 | * | |
6 | * @author Kuali Student Team | |
7 | * | |
8 | */ | |
9 | public interface HasWatermark { | |
10 | public void setWatermarkText(String waterMark); | |
11 | public boolean hasWatermark(); | |
12 | public boolean watermarkShowing(); | |
13 | } |