1 11 package org.eclipse.ui.internal.wizards.datatransfer; 12 13 import java.io.IOException ; 14 15 import org.eclipse.core.resources.IFile; 16 import org.eclipse.core.runtime.CoreException; 17 18 24 public interface IFileExporter { 25 26 32 public void finished() throws IOException ; 33 34 42 public void write(IFile resource, String destinationPath) 43 throws IOException , CoreException; 44 45 } 46 | Popular Tags |