protected static class Browse.RowLeaveResult
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
boolean |
result
true if there is no ROW-LEAVE trigger or it has returned normally. |
boolean |
rowSaved
true if the current browse row was saved during ROW-LEAVE trigger execution. |
| Constructor and Description |
|---|
RowLeaveResult(boolean result)
Create an instance.
|
RowLeaveResult(boolean result,
boolean rowSaved)
Create an instance.
|
public boolean result
true if there is no ROW-LEAVE trigger or it has returned normally.
false if NO-APPLY has been returned by the trigger or any step preceding
trigger invocation has failed.public boolean rowSaved
true if the current browse row was saved during ROW-LEAVE trigger execution.public RowLeaveResult(boolean result)
result - true if there is no ROW-LEAVE trigger or it has returned normally.
false if NO-APPLY has been returned by the trigger or any step preceding
trigger invocation has failed.public RowLeaveResult(boolean result,
boolean rowSaved)
result - true if there is no ROW-LEAVE trigger or it has returned normally.
false if NO-APPLY has been returned by the trigger or any step preceding
trigger invocation has failed.rowSaved - true if the current browse row was saved during ROW-LEAVE trigger execution.