This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class BackingBean { | |
/* Binding for popUp */ | |
private RichPopup supplierLOVPopup; | |
public RichPopup getSupplierLOVPopup() { | |
return supplierLOVPopup; | |
} | |
public void showSupplierLOVPopup(){ | |
RichPopup.PopupHints hints = new RichPopup.PopupHints(); | |
this.getSupplierLOVPopup().show(hints); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String message = "This is a test!"; | |
JboException ex = new JboException (message); | |
BindingContext bctx = BindingContext.getCurrent(); | |
((DCBindingContainer)bctx.getCurrentBindingsEntry()).reportException(ex); |