Package org.richfaces.skin

Examples of org.richfaces.skin.SkinNotFoundException


  private static final String A4J_SKIN_PARAMETER = "org.ajax4jsf.SKIN";

  protected Skin getSkinByName(Object currentSkinOrName) {
    if (null == currentSkinOrName) {
      throw new SkinNotFoundException(Messages
          .getMessage(Messages.NULL_SKIN_NAME_ERROR));
    }
    // user binding return skin instance.
    if (currentSkinOrName instanceof Skin) {
      return (Skin) currentSkinOrName;
View Full Code Here


        }
      }
    }
    // TODO - read skin from property file in WEB-INF directory.
    if (loadedPropertiesCount == 0) {
      throw new SkinNotFoundException(Messages.getMessage(
          Messages.SKIN_NOT_FOUND_ERROR, name));
    }
    // replace all EL-expressions by prepared ValueBinding ?
    ApplicationFactory factory = (ApplicationFactory) FactoryFinder
        .getFactory(FactoryFinder.APPLICATION_FACTORY);
View Full Code Here

TOP

Related Classes of org.richfaces.skin.SkinNotFoundException

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.