Package lt.velykis.maven.skins.reflow
Interface HtmlTool.IdElement
-
- Enclosing class:
- HtmlTool
public static interface HtmlTool.IdElementRepresentation of a HTML element with ID and a text content. Other such elements can be nested within.- Since:
- 1.0
- Author:
- Andrius Velykis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetId()Retrieves the ID of the HTML element (attributeid)List<? extends HtmlTool.IdElement>getItems()Retrieves the children of the HTML element (nested within the element)StringgetText()Retrieves the text contents of the HTML element (rendered for display)
-
-
-
Method Detail
-
getId
String getId()
Retrieves the ID of the HTML element (attributeid)- Returns:
- element
idvalue
-
getText
String getText()
Retrieves the text contents of the HTML element (rendered for display)- Returns:
- text contents of the element
-
getItems
List<? extends HtmlTool.IdElement> getItems()
Retrieves the children of the HTML element (nested within the element)- Returns:
- nested items within the element
-
-