Package org.eclipse.jst.jsf.core.jsfappconfig

Examples of org.eclipse.jst.jsf.core.jsfappconfig.ImplicitRuntimeJSFAppConfigLocater


  public List<IJSFAppConfigLocater> getLocators() {
    List<IJSFAppConfigLocater> ret = new ArrayList<IJSFAppConfigLocater>();
   
    // implicit runtime-provided configuration
    IJSFAppConfigLocater implicitRuntimeConfigLocater = new ImplicitRuntimeJSFAppConfigLocater();
    ret.add(implicitRuntimeConfigLocater);
   
    // default ("/WEB-INF/faces-config.xml") locater
    IJSFAppConfigLocater defaultConfigLocater = new DefaultJSFAppConfigLocater();
    ret.add(defaultConfigLocater);
View Full Code Here

TOP

Related Classes of org.eclipse.jst.jsf.core.jsfappconfig.ImplicitRuntimeJSFAppConfigLocater

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.