-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
106 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
tools/rack/rack.plugin/src/com/ge/research/rack/nature/RackBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package com.ge.research.rack.nature; | ||
|
||
import java.util.Map; | ||
import org.eclipse.core.resources.IProject; | ||
import org.eclipse.core.resources.IncrementalProjectBuilder; | ||
import org.eclipse.core.runtime.CoreException; | ||
import org.eclipse.core.runtime.IProgressMonitor; | ||
|
||
public class RackBuilder extends IncrementalProjectBuilder { | ||
|
||
@Override | ||
protected IProject[] build(int kind, Map<String, String> args, IProgressMonitor monitor) throws CoreException { | ||
// TODO Auto-generated method stub | ||
return null; | ||
} | ||
|
||
} |
33 changes: 33 additions & 0 deletions
33
tools/rack/rack.plugin/src/com/ge/research/rack/nature/RackNature.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package com.ge.research.rack.nature; | ||
|
||
import org.eclipse.core.resources.IProject; | ||
import org.eclipse.core.resources.IProjectNature; | ||
import org.eclipse.core.runtime.CoreException; | ||
|
||
public class RackNature implements IProjectNature { | ||
|
||
@Override | ||
public void configure() throws CoreException { | ||
// TODO Auto-generated method stub | ||
|
||
} | ||
|
||
@Override | ||
public void deconfigure() throws CoreException { | ||
// TODO Auto-generated method stub | ||
|
||
} | ||
|
||
@Override | ||
public IProject getProject() { | ||
// TODO Auto-generated method stub | ||
return null; | ||
} | ||
|
||
@Override | ||
public void setProject(IProject project) { | ||
// TODO Auto-generated method stub | ||
|
||
} | ||
|
||
} |