Class PropertyDiff

java.lang.Object
org.nuiton.util.beans.PropertyDiff

public class PropertyDiff
extends java.lang.Object
TODO
Since:
2.4
Author:
Brendan Le Ny - bleny@codelutin.com
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected java.lang.Class<?> propertyType  
    protected java.lang.String sourceProperty  
    protected java.lang.Object sourceValue  
    protected java.lang.String targetProperty  
    protected java.lang.Object targetValue  
  • Constructor Summary

    Constructors 
    Constructor Description
    PropertyDiff()  
    PropertyDiff​(java.lang.String sourceProperty, java.lang.Object sourceValue, java.lang.String targetProperty, java.lang.Object targetValue, java.lang.Class<?> propertyType)  
  • Method Summary

    Modifier and Type Method Description
    java.lang.Class<?> getPropertyType()  
    java.lang.String getSourceProperty()  
    java.lang.Object getSourceValue()  
    java.lang.String getTargetProperty()  
    java.lang.Object getTargetValue()  
    void setPropertyType​(java.lang.Class<?> propertyType)  
    void setSourceProperty​(java.lang.String sourceProperty)  
    void setSourceValue​(java.lang.Object sourceValue)  
    void setTargetProperty​(java.lang.String targetProperty)  
    void setTargetValue​(java.lang.Object targetValue)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

    • PropertyDiff

      public PropertyDiff()
    • PropertyDiff

      public PropertyDiff​(java.lang.String sourceProperty, java.lang.Object sourceValue, java.lang.String targetProperty, java.lang.Object targetValue, java.lang.Class<?> propertyType)
  • Method Details