Serialized Form
-
Package org.xwiki.diff.display
-
Class org.xwiki.diff.display.UnifiedDiffBlock extends ArrayList<UnifiedDiffElement<E,F>> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
conflict
UnifiedDiffConflictElement<E> conflict
-
-
Class org.xwiki.diff.display.UnifiedDiffConfiguration extends DiffConfiguration<F> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
contextSize
int contextSize
The number of unmodified elements to display before and after a chunk of modified elements. This number determines how blocks are created. If the distance between two changes is less than the double of this value then those changes are put in the same block (they share the same context). -
splitter
Splitter<E,F> splitter
The object used to split the modified elements into sub-elements in order to produce a more detailed diff. This allows us to display changes at two levels of granularity (elements and their sub-elements).
-
-