Created
April 29, 2009 15:47
-
-
Save jonalv/103856 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.bioclipse.managers.tests; | |
import java.util.List; | |
import org.eclipse.core.resources.IFile; | |
import net.bioclipse.core.domain.IBioObject; | |
import net.bioclipse.jobs.BioclipseJob; | |
import net.bioclipse.jobs.BioclipseJobUpdateHook; | |
import net.bioclipse.managers.business.IBioclipseManager; | |
import net.bioclipse.managers.business.ManagerImplementation; | |
@ManagerImplementation(TestManager.class) | |
public interface ITestManager extends IBioclipseManager { | |
public List<IBioObject> getBioObjects(String path); | |
public List<IBioObject> getBioObjects(IFile file); | |
public BioclipseJob<IBioObject> getBioObjects( IFile file, | |
BioclipseJobUpdateHook h ); | |
public String getGreeting(String name); | |
public void runAsJob(IFile file); | |
public void runAsJob(String path); | |
public void dontRunAsJob(IFile file); | |
public void dontRunAsJob(String path); | |
public String getPath(IFile file); | |
public String getPath(String path); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment