Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
IStyles |
|
| 1.0;1 |
1 | package net.sf.jolene.html; | |
2 | ||
3 | /** | |
4 | * Comments for IStyles go here. | |
5 | * | |
6 | * @author Dan Howard | |
7 | * @since Aug 3, 2008 6:13:43 PM | |
8 | */ | |
9 | public interface IStyles extends ICollection { | |
10 | ||
11 | String getStyle(String key); | |
12 | ||
13 | String setStyle(String key, String value); | |
14 | ||
15 | boolean hasStyle(String key); | |
16 | ||
17 | String removeStyle(String key); | |
18 | ||
19 | void setStyles(String style); | |
20 | ||
21 | void resetStyles(String style); | |
22 | } |