Math2mat

/home/ythoma/docs/math2mat/svn/wp1/framework/m2mGUI/src/m2m/frontend/view/M2MFileStoreEditorInput.java

Go to the documentation of this file.
00001 
00019 package m2m.frontend.view;
00020 
00021 import m2m.backend.project.M2MProject;
00022 
00023 import org.eclipse.core.filesystem.IFileStore;
00024 import org.eclipse.ui.ide.FileStoreEditorInput;
00025 
00031 public class M2MFileStoreEditorInput extends FileStoreEditorInput
00032 {
00033         M2MProject project;
00034         public M2MFileStoreEditorInput(IFileStore fileStore,M2MProject project) {
00035                 super(fileStore);
00036                 this.project=project;
00037         }
00038         
00039         public M2MProject getProject() {
00040                 return project;
00041         }
00042 }
 All Classes Namespaces Files Functions Variables Enumerations