01: package com.bostechcorp.cbesb.ui.ide.util;
02:
03: import org.eclipse.core.resources.IProject;
04: import org.eclipse.core.resources.IProjectNature;
05: import org.eclipse.core.runtime.CoreException;
06:
07: public class ESBProjectNature implements IProjectNature {
08:
09: public void configure() throws CoreException {
10: // TODO Auto-generated method stub
11:
12: }
13:
14: public void deconfigure() throws CoreException {
15: // TODO Auto-generated method stub
16:
17: }
18:
19: public IProject getProject() {
20: // TODO Auto-generated method stub
21: return null;
22: }
23:
24: public void setProject(IProject project) {
25: // TODO Auto-generated method stub
26:
27: }
28:
29: }
|