Interface StyleTarget
-
- All Known Implementing Classes:
Cell
,QueryTable
,Row
public interface StyleTarget
An interface that classes can use to indicate that they can hold styles.This is used by
Table
-related classes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<String>
getCssClasses()
Retrieves the set of CSS Classes attached to this objectString
getStyle()
Gets the CSS style string for this objectvoid
setCssClasses(List<String> cssClasses)
Stores the set of CSS classes attached to this objectvoid
setStyle(String style)
Sets the HTML element’s style property of this object
-
-
-
Method Detail
-
getCssClasses
List<String> getCssClasses()
Retrieves the set of CSS Classes attached to this object- Returns:
- The set of CSS class names
-
setCssClasses
void setCssClasses(List<String> cssClasses)
Stores the set of CSS classes attached to this object- Parameters:
cssClasses
- The set of CSS class names
-
-