Package de.hybris.yfaces.component.html

Examples of de.hybris.yfaces.component.html.HtmlYComponent


  private <T2 extends YComponent> T2 findComponent(String attribute) {
    T2 result = null;

    if (this.isInitialized()) {
      // lookup for parent YComponent which holds the model
      HtmlYComponent cmp = null;
      if (result == null && (cmp = getActionHtmlYComponent()) != null) {
        result = (T2) cmp.getYComponent();
      }
    } else {
      throw new YFacesException(
          logId
              + " found no Component (got no FacesEvent; missing Action- or ValueChangeListener?)");
View Full Code Here

TOP

Related Classes of de.hybris.yfaces.component.html.HtmlYComponent

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.