public interface ErrorReportPopover extends PopoverView
Modifier and Type | Interface and Description |
---|---|
static interface |
ErrorReportPopover.Presenter |
PopoverView.Position
Modifier and Type | Method and Description |
---|---|
void |
hide()
Makes this popover container(and the main content along with it) invisible.
|
boolean |
isShown()
Returns the status of the popver (open or closed)
|
void |
setup(String errorTitleText,
String errorContentText,
String keepText,
int mx,
int my,
PopoverView.Position position)
Makes the
ErrorReportPopover visible with keep button only. |
void |
setup(String errorTitleText,
String errorContentText,
String keepText,
String applyText,
org.uberfire.mvp.Command applyCommand,
int mx,
int my,
PopoverView.Position position)
Makes the
ErrorReportPopover visible with Keep/Apply buttons. |
setup, show
void setup(String errorTitleText, String errorContentText, String keepText, String applyText, org.uberfire.mvp.Command applyCommand, int mx, int my, PopoverView.Position position)
ErrorReportPopover
visible with Keep/Apply buttons.errorTitleText
- errorContentText
- keepText
- applyText
- applyCommand
- mx
- x position of the popovermy
- y position of the popoverposition
- position where the popover is put (LEFT or RIGHT)void setup(String errorTitleText, String errorContentText, String keepText, int mx, int my, PopoverView.Position position)
ErrorReportPopover
visible with keep button only.errorTitleText
- errorContentText
- keepText
- mx
- x position of the popovermy
- y position of the popoverposition
- position where the popover is put (LEFT or RIGHT)void hide()
hide
in interface PopoverView
boolean isShown()
isShown
in interface PopoverView
Copyright © 2001–2020 JBoss by Red Hat. All rights reserved.