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

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