1 11 12 package org.eclipse.pde.internal.ui.wizards.templates; 13 14 import org.eclipse.core.resources.IFile; 15 import org.eclipse.ui.part.FileEditorInput; 16 17 public class TemplateEditorInput extends FileEditorInput { 18 private String firstPageId; 19 20 24 public TemplateEditorInput(IFile file, String firstPageId) { 25 super(file); 26 this.firstPageId = firstPageId; 27 } 28 29 public String getFirstPageId() { 30 return firstPageId; 31 } 32 } 33 | Popular Tags |