Interface HtmlResultGroup
-
- All Known Implementing Classes:
JfrHtmlRulesReport.SimpleResultGroup
public interface HtmlResultGroupProvides 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 theHtmlResultProviderinterface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<HtmlResultGroup>getChildren()java.lang.StringgetId()java.lang.StringgetImage()java.lang.StringgetName()java.util.Collection<java.lang.String>getTopics()booleanhasChildren()
-
-
-
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()
-
-