Interface PartialRendererData<D>
-
- Type Parameters:
D- type of data contained by this object
- All Known Implementing Classes:
DefaultPartialRendererData
public interface PartialRendererData<D>A data for a partial CompareView renderer (i.e. an attribute value renderer). Depending on renderer a data may contain single item to be rendered or a colletion.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ComparisonResultgetComparisonResult()ComparisonStategetComparisonState()DgetData()default booleanisDiffOnly()
-
-
-
Method Detail
-
getData
D getData()
- Returns:
- data to be rendered
-
getComparisonResult
ComparisonResult getComparisonResult()
- Returns:
- current comparison result
-
getComparisonState
ComparisonState getComparisonState()
- Returns:
- current state of comparison
-
isDiffOnly
default boolean isDiffOnly()
- Returns:
trueif only differences should be rendered
-
-