Package oracle.jbo

Examples of oracle.jbo.LocaleContext


     * @param viewObject the ViewObject.
     */
    public TableModelImpl(final ViewObject viewObject) {
        this.viewObject = viewObject;
        this.collectionModel = new CollectionModelImpl(viewObject);
        final LocaleContext locale = viewObject.getApplicationModule().getSession().getLocaleContext();
        for (AttributeDef adef : viewObject.getAttributeDefs()) {
            if (adef.getUIHelper().getDisplayHint(locale) == AttributeHints.ATTRIBUTE_DISPLAY_HINT_DISPLAY) {
                final AttributeDescriptorImpl ad = new AttributeDescriptorImpl(adef, locale);
                attributes.add(ad);
                columns.add(new AttributeColumnDescriptorImpl(ad));
View Full Code Here

TOP

Related Classes of oracle.jbo.LocaleContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.