Package jadex.rules.eca
Class ChangeInfo<T>
- java.lang.Object
- 
- jadex.rules.eca.ChangeInfo<T>
 
- 
 public class ChangeInfo<T> extends java.lang.Object
- 
- 
Constructor SummaryConstructors Constructor Description ChangeInfo(T value, T oldvalue, java.lang.Object info)Create a new CollectionEntry.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetInfo()Get the info, e.g.TgetOldValue()Get the oldvalue.TgetValue()Get the value.voidsetInfo(java.lang.Object info)Set the info, e.g.voidsetOldValue(T oldvalue)Set the oldvalue.voidsetValue(T value)Set the value.java.lang.StringtoString()Get a string representation.
 
- 
- 
- 
Method Detail- 
getValuepublic T getValue() Get the value. return The value.
 - 
setValuepublic void setValue(T value) Set the value.- Parameters:
- value- The value to set.
 
 - 
getOldValuepublic T getOldValue() Get the oldvalue. return The oldvalue.
 - 
setOldValuepublic void setOldValue(T oldvalue) Set the oldvalue.- Parameters:
- oldvalue- The oldvalue to set.
 
 - 
getInfopublic java.lang.Object getInfo() Get the info, e.g. index or key.- Returns:
- The info.
 
 - 
setInfopublic void setInfo(java.lang.Object info) Set the info, e.g. index or key.- Parameters:
- info- The info to set.
 
 - 
toStringpublic java.lang.String toString() Get a string representation.- Overrides:
- toStringin class- java.lang.Object
 
 
- 
 
-