Package org.nuiton.jaxx.compiler.binding
Class DataListener
- java.lang.Object
-
- org.nuiton.jaxx.compiler.binding.DataListener
-
public class DataListener extends Object
Created: 5 déc. 2009- Version:
- $Revision$ Mise a jour: $Date$ par : $Author$
- Author:
- Tony Chemit - dev@tchemit.fr
-
-
Field Summary
Fields Modifier and Type Field Description protected StringaddListenerCodecode of the add listenerprotected StringobjectCodethe nullity test to do before to add or remove the listenerprotected StringremoveListenerCodecode of the remove listenerprotected StringsymbolUnique id of the data listener (should be something like objectId.propertyName
-
Constructor Summary
Constructors Constructor Description DataListener(String symbol, String objectCode, String addListenerCode, String removeListenerCode)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAddListenerCode()StringgetObjectCode()StringgetRemoveListenerCode()StringgetSymbol()StringtoString()
-
-
-
Field Detail
-
symbol
protected final String symbol
Unique id of the data listener (should be something like objectId.propertyName
-
objectCode
protected final String objectCode
the nullity test to do before to add or remove the listener
-
addListenerCode
protected String addListenerCode
code of the add listener
-
removeListenerCode
protected String removeListenerCode
code of the remove listener
-
-