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/matrix/NearbySubstitutionMatrix.java

    r1733 r1734  
    99import de.ugoe.cs.autoquest.tasktrees.treeifc.ITask; 
    1010 
     11// TODO: Auto-generated Javadoc 
    1112/** 
     13 * The Class NearbySubstitutionMatrix. 
     14 * 
    1215 * @author Ralph Krimmel 
    13  * 
    1416 */ 
    1517public class NearbySubstitutionMatrix implements SubstitutionMatrix { 
    1618 
     19        /** The input1. */ 
    1720        private final int[] input1; 
     21         
     22        /** The input2. */ 
    1823        private final int[] input2; 
     24         
     25        /** The range. */ 
    1926        private final int range; 
    2027 
     28        /** 
     29         * Instantiates a new nearby substitution matrix. 
     30         * 
     31         * @param input1 the input1 
     32         * @param input2 the input2 
     33         * @param range the range 
     34         */ 
    2135        public NearbySubstitutionMatrix(int[] input1, int[] input2, int range) { 
    2236                this.input1 = input1; 
     
    2539        } 
    2640 
     41        /* (non-Javadoc) 
     42         * @see de.ugoe.cs.autoquest.tasktrees.alignment.matrix.SubstitutionMatrix#generate(java.util.HashSet) 
     43         */ 
    2744        @Override 
    2845        public void generate(HashSet<ITask> uniqueTasks) { 
    2946        } 
    3047 
     48        /* (non-Javadoc) 
     49         * @see de.ugoe.cs.autoquest.tasktrees.alignment.matrix.SubstitutionMatrix#getGapPenalty() 
     50         */ 
    3151        @Override 
    3252        public float getGapPenalty() { 
     
    5171        } 
    5272 
     73        /* (non-Javadoc) 
     74         * @see de.ugoe.cs.autoquest.tasktrees.alignment.matrix.SubstitutionMatrix#update(java.util.LinkedList) 
     75         */ 
    5376        @Override 
    5477        public void update(LinkedList<ITask> newlyGeneratedTasks) { 
Note: See TracChangeset for help on using the changeset viewer.