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

Last change on this file since 35 was 35, checked in by boris, 19 years ago
  • added some error handling
File size: 523 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    private IProject project;
10   
11    public void configure() throws CoreException
12    {
13    }
14
15    public void deconfigure() throws CoreException
16    {
17    }
18
19    public IProject getProject()
20    {
21        return project;
22    }
23
24    public void setProject(IProject project)
25    {
26        this.project = project;
27    }
28}
Note: See TracBrowser for help on using the repository browser.