Methods Summary |
---|
public void | setPostBuildMethod(java.lang.reflect.Method method)INTERNAL:
Set it only if the same method wasn't already set from XML. If this
is a different method and one has already been set from XML, then an
exception will be thrown from the set on the parent.
if (noCallbackMethodAlreadySetFor(POST_BUILD, method)) {
super.setPostBuildMethod(method);
}
|
public void | setPostCloneMethod(java.lang.reflect.Method method)INTERNAL:
Set it only if the same method wasn't already set from XML. If this
is a different method and one has already been set from XML, then an
exception will be thrown from the set on the parent.
if (noCallbackMethodAlreadySetFor(POST_CLONE, method)) {
super.setPostCloneMethod(method);
}
|
public void | setPostDeleteMethod(java.lang.reflect.Method method)INTERNAL:
Set it only if the same method wasn't already set from XML. If this
is a different method and one has already been set from XML, then an
exception will be thrown from the set on the parent.
if (noCallbackMethodAlreadySetFor(POST_DELETE, method)) {
super.setPostDeleteMethod(method);
}
|
public void | setPostInsertMethod(java.lang.reflect.Method method)INTERNAL:
Set it only if the same method wasn't already set from XML. If this
is a different method and one has already been set from XML, then an
exception will be thrown from the set on the parent.
if (noCallbackMethodAlreadySetFor(POST_INSERT, method)) {
super.setPostInsertMethod(method);
}
|
public void | setPostRefreshMethod(java.lang.reflect.Method method)INTERNAL:
Set it only if the same method wasn't already set from XML. If this
is a different method and one has already been set from XML, then an
exception will be thrown from the set on the parent.
if (noCallbackMethodAlreadySetFor(POST_REFRESH, method)) {
super.setPostRefreshMethod(method);
}
|
public void | setPostUpdateMethod(java.lang.reflect.Method method)INTERNAL:
Set it only if the same method wasn't already set from XML. If this
is a different method and one has already been set from XML, then an
exception will be thrown from the set on the parent.
if (noCallbackMethodAlreadySetFor(POST_UPDATE, method)) {
super.setPostUpdateMethod(method);
}
|
public void | setPrePersistMethod(java.lang.reflect.Method method)INTERNAL:
Set it only if the same method wasn't already set from XML. If this
is a different method and one has already been set from XML, then an
exception will be thrown from the set on the parent.
if (noCallbackMethodAlreadySetFor(PRE_PERSIST, method)) {
super.setPrePersistMethod(method);
}
|
public void | setPreRemoveMethod(java.lang.reflect.Method method)INTERNAL:
Set it only if the same method wasn't already set from XML. If this
is a different method and one has already been set from XML, then an
exception will be thrown from the set on the parent.
if (noCallbackMethodAlreadySetFor(PRE_REMOVE, method)) {
super.setPreRemoveMethod(method);
}
|
public void | setPreUpdateWithChangesMethod(java.lang.reflect.Method method)INTERNAL:
Set it only if the same method wasn't already set from XML. If this
is a different method and one has already been set from XML, then an
exception will be thrown from the set on the parent.
if (noCallbackMethodAlreadySetFor(PRE_UPDATE_WITH_CHANGES, method)) {
super.setPreUpdateWithChangesMethod(method);
}
|