KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > emf > importer > ui > contribution > IModelImporterWizard


1 /**
2  * <copyright>
3  *
4  * Copyright (c) 2005 IBM Corporation and others.
5  * All rights reserved. This program and the accompanying materials
6  * are made available under the terms of the Eclipse Public License v1.0
7  * which accompanies this distribution, and is available at
8  * http://www.eclipse.org/legal/epl-v10.html
9  *
10  * Contributors:
11  * IBM - Initial API and implementation
12  *
13  * </copyright>
14  *
15  * IModelImporterWizard.java,v 1.1 2005/05/12 17:10:24 marcelop Exp
16  */

17 package org.eclipse.emf.importer.ui.contribution;
18
19 import java.util.List JavaDoc;
20
21 import org.eclipse.core.resources.IFile;
22 import org.eclipse.core.runtime.IPath;
23 import org.eclipse.ui.INewWizard;
24
25
26 /**
27  * @since 2.1.0
28  */

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 JavaDoc fileName);
47   String JavaDoc getGenModelFileName();
48   
49   List JavaDoc getFileExtensions();
50 }
Popular Tags