Class EventDescriptor<T>
- java.lang.Object
-
- com.neotropic.kuwaiba.modules.commercial.processman.forms.elements.EventDescriptor<T>
-
- Type Parameters:
T
- Type old/new value
public class EventDescriptor<T> extends Object
- Author:
- Johny Andres Ortega Ruiz <johny.ortega@kuwaiba.org>
-
-
Constructor Summary
Constructors Constructor Description EventDescriptor()
EventDescriptor(String eventName)
EventDescriptor(String eventName, String propertyName)
EventDescriptor(String eventName, String propertyName, T newValue, T oldValue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getEventName()
T
getNewValue()
T
getOldValue()
String
getPropertyName()
void
setEventName(String name)
void
setNewValue(T newValue)
void
setOldValue(T oldValue)
void
setPropertyName(String propertyName)
-
-
-
Method Detail
-
getPropertyName
public String getPropertyName()
-
setPropertyName
public void setPropertyName(String propertyName)
-
getEventName
public String getEventName()
-
setEventName
public void setEventName(String name)
-
getNewValue
public T getNewValue()
-
setNewValue
public void setNewValue(T newValue)
-
getOldValue
public T getOldValue()
-
setOldValue
public void setOldValue(T oldValue)
-
-