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

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


    // web.xml context-parameter specified locater
    IJSFAppConfigLocater contextParamConfigLocater = new ContextParamSpecifiedJSFAppConfigLocater();
    ret.add(contextParamConfigLocater);
   
    // runtime classpath locater
    IJSFAppConfigLocater classpathConfigLocater = new RuntimeClasspathJSFAppConfigLocater();
    ret.add(classpathConfigLocater);
   
    return Collections.unmodifiableList(ret);
  }
View Full Code Here

TOP

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

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.