Uses of Class
to.etc.webapp.nls.BundleRef

Packages that use BundleRef
to.etc.domui.component.menu   
to.etc.domui.component.meta   
to.etc.domui.component.meta.impl   
to.etc.domui.component.tbl   
to.etc.domui.dom.errors   
to.etc.domui.dom.html   
to.etc.domui.server   
to.etc.domui.trouble   
to.etc.domui.util   
to.etc.webapp.nls   
to.etc.webapp.query   
 

Uses of BundleRef in to.etc.domui.component.menu
 

Methods in to.etc.domui.component.menu that return BundleRef
 BundleRef MenuItemImpl.getMsgBundle()
           
 

Methods in to.etc.domui.component.menu with parameters of type BundleRef
 MenuItemImpl MenuManager.registerMenuItem(BundleRef bundle, java.lang.String keyBase)
          Registers a menu item with your own texts overriding the page's texts.
 MenuItemImpl MenuManager.registerMenuItem(BundleRef bundle, java.lang.String keyBase, java.lang.Class<? extends UrlPage> pageClass, java.lang.Object... parameters)
          Registers a menu item.
 MenuItemImpl MenuManager.registerMenuItem(BundleRef bundle, java.lang.String labelkey, java.lang.String titlekey, java.lang.String desckey, java.lang.String searchKey)
          Plugin-based registration of menu items.
 MenuItemImpl MenuManager.registerSubMenu(BundleRef bundle, java.lang.String keyBase)
          Registers a ROOT submenu (can be other level if one of the setLocation() calls gets called after this).
 MenuItemImpl MenuManager.registerSubMenu(BundleRef bundle, java.lang.String keyBase, MenuItemImpl parent, int order)
           
 void MenuItemImpl.setMsgBundle(BundleRef msgBundle)
           
 

Uses of BundleRef in to.etc.domui.component.meta
 

Methods in to.etc.domui.component.meta that return BundleRef
 BundleRef ClassMetaModel.getClassBundle()
          Returns the message bundle for translations related to this class.
 

Uses of BundleRef in to.etc.domui.component.meta.impl
 

Methods in to.etc.domui.component.meta.impl that return BundleRef
 BundleRef ClassMetaModelWrapper.getClassBundle()
           
 BundleRef DefaultClassMetaModel.getClassBundle()
          Return the class' resource bundle.
 

Constructors in to.etc.domui.component.meta.impl with parameters of type BundleRef
MetaModelException(BundleRef bundle, java.lang.String code, java.lang.Object... parameters)
           
MetaModelException(java.lang.Throwable t, BundleRef bundle, java.lang.String code, java.lang.Object... parameters)
           
 

Uses of BundleRef in to.etc.domui.component.tbl
 

Methods in to.etc.domui.component.tbl with parameters of type BundleRef
 void DataPager.addButton(java.lang.String image, IClicked<DataPager> click, BundleRef bundle, java.lang.String ttlkey)
           
 

Uses of BundleRef in to.etc.domui.dom.errors
 

Methods in to.etc.domui.dom.errors that return BundleRef
 BundleRef UIMessage.getBundle()
          Returns the message bundle the code is in, or null if the code is a global message code (deprecated).
 

Methods in to.etc.domui.dom.errors with parameters of type BundleRef
static UIMessage UIMessage.error(BundleRef ref, java.lang.String code, java.lang.Object... param)
           
static UIMessage UIMessage.error(NodeBase node, BundleRef ref, java.lang.String code, java.lang.Object... param)
           
static UIMessage UIMessage.error(NodeBase node, java.lang.String errorLocation, BundleRef ref, java.lang.String code, java.lang.Object... param)
           
static UIMessage UIMessage.error(java.lang.String errorLocation, BundleRef ref, java.lang.String code, java.lang.Object... param)
           
static UIMessage UIMessage.info(BundleRef ref, java.lang.String code, java.lang.Object... param)
           
static UIMessage UIMessage.warning(BundleRef ref, java.lang.String code, java.lang.Object... param)
           
static UIMessage UIMessage.warning(NodeBase node, BundleRef ref, java.lang.String code, java.lang.Object... param)
           
static UIMessage UIMessage.warning(NodeBase node, java.lang.String errorLocation, BundleRef ref, java.lang.String code, java.lang.Object... param)
           
 

Uses of BundleRef in to.etc.domui.dom.html
 

Methods in to.etc.domui.dom.html with parameters of type BundleRef
 TH[] THead.setHeaders(BundleRef b, java.lang.String... keys)
           
 

Uses of BundleRef in to.etc.domui.server
 

Methods in to.etc.domui.server with parameters of type BundleRef
 void DomApplication.registerRight(BundleRef bundle, java.lang.String... rights)
          Registers a set of possible rights and their names/translation bundle.
 void DomApplication.registerRights(BundleRef bundle, java.lang.Class<?> constantsclass)
          Takes a class (or interface) and scans all static public final String fields therein.
 

Uses of BundleRef in to.etc.domui.trouble
 

Constructors in to.etc.domui.trouble with parameters of type BundleRef
UIException(BundleRef bundle, java.lang.String code, java.lang.Object... parameters)
           
UIException(java.lang.Throwable t, BundleRef bundle, java.lang.String code, java.lang.Object... parameters)
           
ValidationException(BundleRef bundle, java.lang.String code, java.lang.Object... parameters)
           
 

Uses of BundleRef in to.etc.domui.util
 

Fields in to.etc.domui.util declared as BundleRef
static BundleRef Msgs.BUNDLE
          A reference to the global shared message bundle for DomUI messages.
 

Methods in to.etc.domui.util that return BundleRef
static BundleRef DomUtil.findBundle(UIMenu ma, java.lang.Class<?> clz)
           
static BundleRef DomUtil.findPageBundle(UrlPage urlPage)
          Locates the default page bundle for a page.
static BundleRef DomUtil.getClassBundle(java.lang.Class<?> clz)
          Returns the bundle for the specified class, defined as classname[nls].properties.
static BundleRef DomUtil.getPackageBundle(java.lang.Class<?> base)
           
 

Uses of BundleRef in to.etc.webapp.nls
 

Methods in to.etc.webapp.nls that return BundleRef
static BundleRef BundleRef.create(java.lang.Class<?> clz, java.lang.String name)
          Create or find the BundleRef representing this path.
static BundleRef BundleRef.createWrapper(NlsMessageProvider mp)
           
 BundleRef CodeException.getBundle()
           
static BundleRef NlsContext.getBundleRef(java.lang.String bundlekey)
          Get the BundleRef for the specified bundle key.
 

Constructors in to.etc.webapp.nls with parameters of type BundleRef
CodeException(BundleRef bundle, java.lang.String code, java.lang.Object... parameters)
           
CodeException(java.lang.Throwable t, BundleRef bundle, java.lang.String code, java.lang.Object... parameters)
           
 

Uses of BundleRef in to.etc.webapp.query
 

Fields in to.etc.webapp.query declared as BundleRef
static BundleRef QDbException.BUNDLE
           
 

Constructors in to.etc.webapp.query with parameters of type BundleRef
QDbException(BundleRef bundle, java.lang.String code, java.lang.Object... parameters)
           
QDbException(java.lang.Throwable t, BundleRef bundle, java.lang.String code, java.lang.Object... parameters)