X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fphylogeny%2Ffactories%2FPhylogenyFactory.java;h=d1cc3d12210f012a9ca929d831ab9ef978c4a57f;hb=c956545c704f53df5c8711ede20e786641bfc7be;hp=565e31a84168b325cf4ffe38ed37213cf6376090;hpb=eee996a6476a1e3d84c07f8f690dcde3ff4b2ef5;p=jalview.git diff --git a/forester/java/src/org/forester/phylogeny/factories/PhylogenyFactory.java b/forester/java/src/org/forester/phylogeny/factories/PhylogenyFactory.java index 565e31a..d1cc3d1 100644 --- a/forester/java/src/org/forester/phylogeny/factories/PhylogenyFactory.java +++ b/forester/java/src/org/forester/phylogeny/factories/PhylogenyFactory.java @@ -21,12 +21,11 @@ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA // // Contact: phylosoft @ gmail . com -// WWW: www.phylosoft.org/forester +// WWW: https://sites.google.com/site/cmzmasek/home/software/forester package org.forester.phylogeny.factories; import java.io.IOException; -import java.util.List; import org.forester.phylogeny.Phylogeny; @@ -38,14 +37,6 @@ import org.forester.phylogeny.Phylogeny; public interface PhylogenyFactory { /** - * This must be implemented in such a way that it returns an empty - * Phylogeny. - * - * @return an empty Phylogeny - */ - public Phylogeny create(); - - /** * This must create a Phylogeny from source (e.g. an XML file, an alignment, * pairwise distances) by using creator (e.g. an XML file parser, an * algorithm implementation). @@ -58,20 +49,4 @@ public interface PhylogenyFactory { * @throws IOException */ public Phylogeny[] create( Object source, Object creator ) throws IOException; - - /** - * This must create a Phylogeny from source (e.g. an XML file, an alignment, - * pairwise distances) by using creator (e.g. an XML file parser, an - * algorithm implementation) with parameters listed in parameters. - * - * @param source - * a source to create a Phylogeny from - * @param creator - * a means to create a Phylogeny - * @param parameters - * a List of parameters for Phylogeny creation - * @return a Phylogeny[] based on argument source - * @throws IOException - */ - public Phylogeny[] create( Object source, Object creator, List parameters ) throws IOException; -} // PhylogenyFactory +}