source: trunk/src/org/modelica/mdt/ModelicaNature.java @ 10

Last change on this file since 10 was 10, checked in by boris, 19 years ago
File size: 623 bytes
Line 
1package org.modelica.mdt;
2
3import org.eclipse.core.resources.IProject;
4import org.eclipse.core.resources.IProjectNature;
5import org.eclipse.core.runtime.CoreException;
6
7public class ModelicaNature implements IProjectNature {
8
9    public void configure() throws CoreException
10    {
11        // TODO Auto-generated method stub
12
13    }
14
15    public void deconfigure() throws CoreException
16    {
17        // TODO Auto-generated method stub
18
19    }
20
21    public IProject getProject()
22    {
23        // TODO Auto-generated method stub
24        return null;
25    }
26
27    public void setProject(IProject project)
28    {
29        // TODO Auto-generated method stub
30
31    }
32
33}
Note: See TracBrowser for help on using the repository browser.