Package oracle.jbo

Examples of oracle.jbo.AttributeHints


     * @param jboAttribute
     * @param localeContext
     */
    public AttributeDescriptorImpl(final AttributeDef jboAttribute, final LocaleContext localeContext) {
        this.name = jboAttribute.getName();
        final AttributeHints hints = jboAttribute.getUIHelper();
        this.label = hints.getLabel(localeContext);
        this.type = jboAttribute.getJavaType();

        //Create the standard support for the following operators.
        if (isString()) {
            supportedOperators.add(new OperatorImpl(BEGINT_MET, JboCompOper.OPER_STARTS_WITH, 1));
View Full Code Here

TOP

Related Classes of oracle.jbo.AttributeHints

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.