|
Java Client API Reference 6.0.2.61 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object | +--com.baan.b3.boi1.dt.SynchronizationActionType.Switch
Argument for the SynchronizationActionType.doSwitch(com.baan.b3.boi1.dt.SynchronizationActionType.Switch) method.
Programmers should create a subclass that does something useful. eg:
public void myMethod(SynchronizationActionType p_sat)
{
p_sat.doSwitch( new SynchronizationActionType.Switch()
{
public void satDelete()
{
System.out.println("Delete action");
}
public void satDefault()
{
System.out.println("Some other action");
}
};
}
| Constructor Summary | |
SynchronizationActionType.Switch()
|
|
| Method Summary | |
void |
satChange()
Called when the switch argument is SynchronizationActionType.CHANGE. |
void |
satDefault()
Called when no specific action is defined for the switch argument. |
void |
satDelete()
Called when the switch argument is SynchronizationActionType.DELETE. |
void |
satInsert()
Called when the switch argument is SynchronizationActionType.INSERT. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public SynchronizationActionType.Switch()
| Method Detail |
public void satInsert()
SynchronizationActionType.INSERT.
satDefault().
public void satDelete()
SynchronizationActionType.DELETE.
satDefault().
public void satChange()
SynchronizationActionType.CHANGE.
satDefault().
public void satDefault()
|
Java Client API Reference 6.0.2.61 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||