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 objectStringgetStyle()Gets the CSS style string for this objectvoidsetCssClasses(List<String> cssClasses)Stores the set of CSS classes attached to this objectvoidsetStyle(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
-
-