Interface IElementUpdateCurrentPropsParams<TData>
-
- Type Parameters:
TData
- Type of the properties model, see e.g.INodeHandler
orITriggerHandler
.
- All Known Implementing Classes:
ElementUpdateCurrentPropsParams
public interface IElementUpdateCurrentPropsParams<TData>
Parameters that are passed toIElementPropertiesBean.updateCurrentProperties(IElementUpdateCurrentPropsParams)
.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TData
getNewData()
TData
getOldData()
-
-
-
Method Detail
-
getOldData
TData getOldData()
- Returns:
- The parsed
old data
before the update, an instance of the class as returned byIElementHandler.getDataModelClass()
.
-
getNewData
TData getNewData()
- Returns:
- The parsed
new data
after the update, an instance of the class as returned byIElementHandler.getDataModelClass()
.
-
-