Package com.google.gxp.compiler.validate

Examples of com.google.gxp.compiler.validate.MismatchedAttributeValidatorsError


        "    exclude='abbr,axis,bgcolor,char,charoff,colspan,",
        "             headers,height,nowrap,rowspan,scope,valign,width' />",
        "<call:callee gxp:bundles='bundle' />");

    compileFiles(callee, caller);
    assertAlert(new MismatchedAttributeValidatorsError(pos(5,1),
                                                       "<call:callee>",
                                                       "align", "bundle"));
    assertNoUnexpectedAlerts();
  }
View Full Code Here


    // TD align has a different pattern from DIV align
    compile("<gxp:param name='bundle' gxp:type='bundle' from-element='td'",
            "   exclude='abbr,axis,bgcolor,char,charoff,colspan,",
            "            headers,height,nowrap,rowspan,scope,valign,width' />",
            "<div gxp:bundles='bundle'/>");
    assertAlert(new MismatchedAttributeValidatorsError(pos(5,1), "<div>", "align", "bundle"));
    assertNoUnexpectedAlerts();
  }
View Full Code Here

TOP

Related Classes of com.google.gxp.compiler.validate.MismatchedAttributeValidatorsError

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.