Package com.dubture.composer.ui.pex

Source Code of com.dubture.composer.ui.pex.NamespaceResolver

package com.dubture.composer.ui.pex;

import org.eclipse.core.runtime.IPath;
import org.eclipse.dltk.core.IScriptFolder;
import org.pdtextensions.core.ui.extension.INamespaceResolver;

import com.dubture.composer.core.ComposerPlugin;
import com.dubture.composer.core.resources.IComposerProject;

public class NamespaceResolver implements INamespaceResolver {

  @Override
  public String resolve(IScriptFolder container) {
   
    IComposerProject project = ComposerPlugin.getDefault().getComposerProject(container.getScriptProject());
   
    IPath path = container.getPath().makeRelativeTo(project.getFullPath());
   
    return project.getNamespace(path);
  }
}
TOP

Related Classes of com.dubture.composer.ui.pex.NamespaceResolver

TOP
Copyright © 2018 www.massapi.com. 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.