public class ChangeInfo<T>
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
protected java.lang.Object |
info
The change info, e.g.
|
protected T |
oldvalue
The old value.
|
protected T |
value
The new value.
|
Constructor and Description |
---|
ChangeInfo(T value,
T oldvalue,
java.lang.Object info)
Create a new CollectionEntry.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getInfo()
Get the info, e.g.
|
T |
getOldValue()
Get the oldvalue.
|
T |
getValue()
Get the value.
|
void |
setInfo(java.lang.Object info)
Set the info, e.g.
|
void |
setOldValue(T oldvalue)
Set the oldvalue.
|
void |
setValue(T value)
Set the value.
|
java.lang.String |
toString()
Get a string representation.
|
protected T value
protected T oldvalue
protected java.lang.Object info
public T getValue()
public void setValue(T value)
value
- The value to set.public T getOldValue()
public void setOldValue(T oldvalue)
oldvalue
- The oldvalue to set.public java.lang.Object getInfo()
public void setInfo(java.lang.Object info)
info
- The info to set.public java.lang.String toString()
toString
in class java.lang.Object