Package ghidra.app.util.html
Class CompositeDataTypeHTMLRepresentation
java.lang.Object
ghidra.app.util.html.HTMLDataTypeRepresentation
ghidra.app.util.html.CompositeDataTypeHTMLRepresentation
-
Field Summary
Modifier and TypeFieldDescriptionprotected List
<ValidatableLine> protected TextLine
protected List
<ValidatableLine> protected TextLine
protected TextLine
protected List
<ValidatableLine> Fields inherited from class ghidra.app.util.html.HTMLDataTypeRepresentation
ALIGNMENT_PREFIX, BR, CHARACTER_SPACE, DIFF_COLOR, ELLIPSES, EMPTY_TAG, END_COMMENT, FORWARD_SLASH, HTML_CLOSE, HTML_OPEN, HTML_SPACE, INDENT_CLOSE, INDENT_OPEN, LENGTH_PREFIX, MAX_CHARACTER_LENGTH, MAX_COMPONENTS, MAX_LINE_LENGTH, MIDDLE_COMMENT, originalHTMLData, START_COMMENT, TAB, TABLE_CLOSE, TABLE_OPEN, TD_CLOSE, TD_OPEN, TR_CLOSE, TR_OPEN, TT_CLOSE, TT_OPEN
-
Constructor Summary
ModifierConstructorDescriptionprotected
CompositeDataTypeHTMLRepresentation
(List<String> warningLines, List<ValidatableLine> header, List<ValidatableLine> bodyContent, List<ValidatableLine> alignmentText, TextLine footerText, TextLine displayName, TextLine alignmentValue) -
Method Summary
Modifier and TypeMethodDescriptionprotected List
<ValidatableLine> buildAlignmentText
(Composite dataType) protected TextLine
buildAlignmentValueText
(Composite composite) buildWarnings
(Composite comp) protected PlaceHolderLine
createPlaceHolderLine
(ValidatableLine oppositeLine) Extension point for adding empty lines.diff
(HTMLDataTypeRepresentation otherRepresentation) Compares this representation and the given representation creates a diff string for both representations.protected void
diffAlignment
(List<ValidatableLine> myLines, List<ValidatableLine> otherLines) This is likeHTMLDataTypeRepresentation.getHTMLString()
, but does not put HTML tags around the dataReturns an HTML string for this data representation object.Methods inherited from class ghidra.app.util.html.HTMLDataTypeRepresentation
addDataTypeLength, addDataTypeLengthAndAlignment, buildFooterText, buildHeaderText, completelyDifferentDiff, copyLines, createCommentLines, diffTextLine, generateTypeName, getCommentForDataType, getDataTypeLengthString, getDiffInput, getDiffInput, getFullHTMLContentString, getFullHTMLString, truncateAsNecessary, truncateAsNecessary, wrapStringInColor
-
Field Details
-
warningLines
-
headerContent
-
bodyContent
-
displayName
-
alignmentText
-
alignmentValueText
-
-
Constructor Details
-
CompositeDataTypeHTMLRepresentation
protected CompositeDataTypeHTMLRepresentation(List<String> warningLines, List<ValidatableLine> header, List<ValidatableLine> bodyContent, List<ValidatableLine> alignmentText, TextLine footerText, TextLine displayName, TextLine alignmentValue) -
CompositeDataTypeHTMLRepresentation
-
-
Method Details
-
buildWarnings
-
buildAlignmentText
-
buildAlignmentValueText
-
getHTMLString
Description copied from class:HTMLDataTypeRepresentation
Returns an HTML string for this data representation object. The HTML returned will be truncated if it is too long. To get the full HTML, callHTMLDataTypeRepresentation.getFullHTMLString()
.- Overrides:
getHTMLString
in classHTMLDataTypeRepresentation
- Returns:
- the html
- See Also:
-
getHTMLContentString
Description copied from class:HTMLDataTypeRepresentation
This is likeHTMLDataTypeRepresentation.getHTMLString()
, but does not put HTML tags around the data- Overrides:
getHTMLContentString
in classHTMLDataTypeRepresentation
- Returns:
- the content
-
createPlaceHolderLine
Description copied from class:HTMLDataTypeRepresentation
Extension point for adding empty lines. Subclasses that do not wish to use the default empty text line can override this method.- Overrides:
createPlaceHolderLine
in classHTMLDataTypeRepresentation
- Parameters:
oppositeLine
- the line that will go along with the newly created placeholder line- Returns:
- the placeholder line
-
diff
Description copied from class:HTMLDataTypeRepresentation
Compares this representation and the given representation creates a diff string for both representations.- Specified by:
diff
in classHTMLDataTypeRepresentation
- Parameters:
otherRepresentation
- the other representation to diff against.- Returns:
- An array of two strings: the first is this object's diff value, the second is the given objects diff value.
-
diffAlignment
-