Interface DiffReporter
-
public interface DiffReporter
- Author:
- Martin Scharm
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MarkupElement
reportDelete()
Report a delete.MarkupElement
reportInsert()
Report an insert.MarkupElement
reportModification(SimpleConnectionManager conMgmt, DiffReporter docA, DiffReporter docB)
Report as a modification.
-
-
-
Method Detail
-
reportModification
MarkupElement reportModification(SimpleConnectionManager conMgmt, DiffReporter docA, DiffReporter docB)
Report as a modification.- Parameters:
conMgmt
- the connection managerdocA
- the original documentdocB
- the modified document- Returns:
- the markup element
-
reportInsert
MarkupElement reportInsert()
Report an insert.- Returns:
- the markup element
-
reportDelete
MarkupElement reportDelete()
Report a delete.- Returns:
- the markup element
-
-