Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2010
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. /*******************************************************************************
  2. * Copyright (c) 2009 Egon Willighagen <egonw@users.sf.net>
  3. *
  4. * All rights reserved. This program and the accompanying materials
  5. * are made available under the terms of the Eclipse Public License v1.0
  6. * which accompanies this distribution, and is available at
  7. * http://www.eclipse.org/legal/epl-v10.html
  8. *
  9. * Contact: http://www.bioclipse.net/
  10. ******************************************************************************/
  11. package net.bioclipse.metware.business;
  12.  
  13. import org.eclipse.core.runtime.IProgressMonitor;
  14.  
  15. import net.bioclipse.core.PublishedClass;
  16. import net.bioclipse.core.business.BioclipseException;
  17. import net.bioclipse.jobs.IReturner;
  18. import net.bioclipse.managers.business.IBioclipseManager;
  19.  
  20. @PublishedClass("The Metware manager is used for interacting with a "
  21. + "MetWare.org database.")
  22. public interface IMetwareManager extends IBioclipseManager {
  23. @PublishedMethod(params = "IMolecule mol, boolean overwrite",
  24. methodSummary = "saves mol to a file, if previously read from file. "
  25. + "Overwrite determines if existing file shall be overwritten.")
  26. public void calculateMetfragScore(IReturner returner,
  27. IProgressMonitor monitor) throws BioclipseException;
  28. }
  29.  
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement