MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / HTMLReport

Class HTMLReport

python/interaction.py:887–930  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

885
886
887class HTMLReport:
888 def __init__(self, title, contents, plaintext="", view=None):
889 self._view = view
890 self._title = title
891 self._contents = contents
892 self._plaintext = plaintext
893
894 def __repr__(self):
895 return "<html report: %s>" % self._title
896
897 def __str__(self):
898 return self._contents
899
900 @property
901 def view(self):
902 return self._view
903
904 @view.setter
905 def view(self, value):
906 self._view = value
907
908 @property
909 def title(self):
910 return self._title
911
912 @title.setter
913 def title(self, value):
914 self._title = value
915
916 @property
917 def contents(self):
918 return self._contents
919
920 @contents.setter
921 def contents(self, value):
922 self._contents = value
923
924 @property
925 def plaintext(self):
926 return self._plaintext
927
928 @plaintext.setter
929 def plaintext(self, value):
930 self._plaintext = value
931
932
933class FlowGraphReport:

Callers 1

_report_from_indexMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected