com.microstrategy.web.app.beans.ConfirmOverwriteDialogBean |
[Expand]
Inherited Constants | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]()
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract boolean |
getCanOverwrite()
Returns whether the current dialog should allow overwriting.
| ||||||||||
abstract String |
getConfirmMessageId()
Returns the confirmation message ID.
| ||||||||||
abstract String |
getMessage()
This method is deprecated.
message could be retrieved from
getConfirmMessageId() and getRejectMessageId()
and it should be part of transform as it can by styled.
| ||||||||||
abstract String |
getRejectMessageId()
Returns the rejection message ID.
| ||||||||||
abstract SaveObjectAsDialogBean | getSaveAsBean() | ||||||||||
abstract void |
setCanOverwrite(boolean canOver)
Sets whether the dialog will let user confirm overwriting or warn user that it can not overwriting.
| ||||||||||
abstract void |
setConfirmMessageId(String msg)
Sets the Confirmation Message ID to show in this dialog.
| ||||||||||
abstract void |
setRejectMessageId(String msg)
Sets the Rejection Message ID to show in this dialog.
|
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]()
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]()
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]()
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]()
|
Returns whether the current dialog should allow overwriting.
true
if this dialog should allow overwriting. Otherwise, return false
Returns the confirmation message ID. If user has not set any message, it will return the internal pre-set message id.
This method is deprecated.
message could be retrieved from getConfirmMessageId()
and getRejectMessageId()
and it should be part of transform as it can by styled.
Returns the message for this dialog. When property canOverwrite
is true,
the confirmation message corresponding to the confirm message ID will be shown;
When property canOverwrite
is false,
the rejection message corresponding to the reject message ID will be shown
Returns the rejection message ID. If user has not set any message, it will return the internal pre-set message ID.
Sets whether the dialog will let user confirm overwriting or warn user that it can not overwriting.
canOver | Whether the message shown as a warning message or confirmation message. |
---|
Sets the Confirmation Message ID to show in this dialog. If nothing set,
internal pre-set message will be shown. When property canOverwrite
is true,
this message will be shown.
msg | The String to shown in the dialog to confirm whether user would like to perform the overwrite. |
---|
Sets the Rejection Message ID to show in this dialog. If nothing set,
internal pre-set message will be shown. When property canOverwrite
is false,
this message will be used.
msg | The String to shown in the dialog when an overwrite will not be allowed to perform. |
---|