Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extensible refactorer #21

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions plugins/org.python.pydev.core/.classpath
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry exported="true" kind="lib" path="lib/jpathwatch-0-94.jar"/>
<classpathentry exported="true" kind="lib" path="commons-codec.jar"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="output" path="bin"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry exported="true" kind="lib" path="lib/jpathwatch-0-94.jar"/>
<classpathentry exported="true" kind="lib" path="commons-codec.jar"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Original file line number Diff line number Diff line change
@@ -9,6 +9,7 @@
import java.net.URI;
import java.util.Map;

import org.eclipse.core.resources.IBuildConfiguration;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resources.IProject;
@@ -29,6 +30,10 @@ public void build(int kind, String builderName, Map args, IProgressMonitor monit
public void build(int kind, IProgressMonitor monitor) throws CoreException {
throw new RuntimeException("Not implemented");
}

public void build(IBuildConfiguration config, int kind, IProgressMonitor monitor) throws CoreException {
throw new RuntimeException("Not implemented");
}

public void close(IProgressMonitor monitor) throws CoreException {
throw new RuntimeException("Not implemented");
@@ -49,6 +54,18 @@ public void create(IProjectDescription description, int updateFlags, IProgressMo
public void delete(boolean deleteContent, boolean force, IProgressMonitor monitor) throws CoreException {
throw new RuntimeException("Not implemented");
}

public IBuildConfiguration getActiveBuildConfig() throws CoreException {
throw new RuntimeException("Not implemented");
}

public IBuildConfiguration getBuildConfig(String configName) throws CoreException {
throw new RuntimeException("Not implemented");
}

public IBuildConfiguration[] getBuildConfigs() throws CoreException {
throw new RuntimeException("Not implemented");
}

public IContentTypeMatcher getContentTypeMatcher() throws CoreException {
throw new RuntimeException("Not implemented");
@@ -85,6 +102,14 @@ public IProject[] getReferencedProjects() throws CoreException {
public IProject[] getReferencingProjects() {
throw new RuntimeException("Not implemented");
}

public IBuildConfiguration[] getReferencedBuildConfigs(String configName, boolean includeMissing) throws CoreException {
throw new RuntimeException("Not implemented");
}

public boolean hasBuildConfig(String configName) throws CoreException {
throw new RuntimeException("Not implemented");
}

public boolean hasNature(String natureId) throws CoreException {
throw new RuntimeException("Not implemented");
Loading