Ignore:
Timestamp:
09/05/14 20:20:29 (10 years ago)
Author:
rkrimmel
Message:

Added automatically created javadoc, still needs to be commented properly though

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/autoquest-core-tasktrees-alignment/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/AlignmentAlgorithmFactory.java

    r1733 r1734  
     1/* 
     2 *  
     3 */ 
    14package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms; 
    25 
     6// TODO: Auto-generated Javadoc 
     7/** 
     8 * A factory for creating AlignmentAlgorithm objects. 
     9 */ 
    310public class AlignmentAlgorithmFactory { 
    411 
     12        /** 
     13         * Creates the. 
     14         * 
     15         * @return the alignment algorithm 
     16         */ 
    517        public static AlignmentAlgorithm create() { 
    618                Class<?> newclass; 
     
    1830        } 
    1931 
     32        /** 
     33         * Sets the default algorithm. 
     34         * 
     35         * @param algorithmname the new default algorithm 
     36         */ 
    2037        public static void setDefaultAlgorithm(String algorithmname) { 
    2138                // TODO: check for valid algorihm class names here 
     
    2340        } 
    2441 
     42        /** The algorithmclass. */ 
    2543        private static String algorithmclass = "de.ugoe.cs.autoquest.tasktrees.alignment.algorithms.SmithWatermanRepeated"; 
    2644} 
Note: See TracChangeset for help on using the changeset viewer.