1 17 package org.eclipse.emf.importer.ui.contribution; 18 19 import java.util.List ; 20 21 import org.eclipse.core.resources.IFile; 22 import org.eclipse.core.runtime.IPath; 23 import org.eclipse.ui.INewWizard; 24 25 26 29 public interface IModelImporterWizard extends INewWizard 30 { 31 void setOriginalGenModelFile(IFile originalGenModel); 32 IFile getOriginalGenModelFile(); 33 34 void setModelFile(IFile modelFile); 35 IFile getModelFile(); 36 37 void setGenModelProjectLocation(IPath projectLocation); 38 IPath getGenModelProjectLocation(); 39 40 void setGenModelProjectPath(IPath projectPath); 41 IPath getGenModelProjectPath(); 42 43 void setGenModelContainerPath(IPath path); 44 IPath getGenModelContainerPath(); 45 46 void setGenModelFileName(String fileName); 47 String getGenModelFileName(); 48 49 List getFileExtensions(); 50 } | Popular Tags |