Interface HtmlResultGroup
-
- All Known Implementing Classes:
JfrHtmlRulesReport.SimpleResultGroup
public interface HtmlResultGroup
Provides structure for how results are to be rendered. This is primarily a tree structure where names and images are associated with topics. These topics can in turn be associated with results via theHtmlResultProvider
interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<HtmlResultGroup>
getChildren()
java.lang.String
getId()
java.lang.String
getImage()
java.lang.String
getName()
java.util.Collection<java.lang.String>
getTopics()
boolean
hasChildren()
-
-
-
Method Detail
-
getChildren
java.util.List<HtmlResultGroup> getChildren()
-
hasChildren
boolean hasChildren()
-
getId
java.lang.String getId()
- Returns:
- Return an id for this group. May be generated but should be unique within a tree of groups.
-
getName
java.lang.String getName()
-
getImage
java.lang.String getImage()
- Returns:
- a string with base64 encoded image data or null if no image is available
-
getTopics
java.util.Collection<java.lang.String> getTopics()
-
-