Package org.eclipse.jst.jsf.common.internal.componentcore.AbstractVirtualComponentQuery

Examples of org.eclipse.jst.jsf.common.internal.componentcore.AbstractVirtualComponentQuery.DefaultVirtualComponentQuery


   * @return IVirtualFolder instance which represents the root context's
   * web content folder.
   * @deprecated Call DefaultVirtualComponentQuery.getWebContentFolder instead
   */
  public static IVirtualFolder getWebContentFolder(IProject project) {
    return new DefaultVirtualComponentQuery().getWebContentFolder(project);
  }
View Full Code Here


     */
    protected void initDefConfigPath() {
      if (defConfigPath == null) {
        IProject project = getJSFAppConfigManager().getProject();
        if (project != null) {
          IVirtualFolder webContentFolder = new DefaultVirtualComponentQuery().getWebContentFolder(project);
          if (webContentFolder != null) {
            IVirtualResource defConfigFile = webContentFolder.findMember(DEF_APPCONFIGRESOURCE_FILENAME);
            if (defConfigFile != null) {
              defConfigPath = defConfigFile.getWorkspaceRelativePath();
            }
View Full Code Here

   * (relative to the web content folder) returned by getFilenames(), and
   * updates the set of {@link IJSFAppConfigProvider} instances accordingly.
   */
  public void locateProviders() {
    IProject project = getJSFAppConfigManager().getProject();
    IVirtualFolder webContentFolder = new DefaultVirtualComponentQuery().getWebContentFolder(project);
    if (webContentFolder != null) {
      List filenames = getFilenames();
      Iterator itFilenames = filenames.iterator();
      Set newConfigProviders = new LinkedHashSet();
      while (itFilenames.hasNext()) {
View Full Code Here

   * @return IVirtualFolder instance which represents the root context's
   * web content folder.
   * @deprecated Call DefaultVirtualComponentQuery.getWebContentFolder instead
   */
  public static IVirtualFolder getWebContentFolder(IProject project) {
    return new DefaultVirtualComponentQuery().getWebContentFolder(project);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jst.jsf.common.internal.componentcore.AbstractVirtualComponentQuery.DefaultVirtualComponentQuery

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.