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/MatchOccurence.java

    r1733 r1734  
     1/* 
     2 *  
     3 */ 
    14package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms; 
    25 
    36import java.io.Serializable; 
    47 
     8// TODO: Auto-generated Javadoc 
     9/** 
     10 * The Class MatchOccurence. 
     11 */ 
    512public class MatchOccurence implements Serializable { 
    6         /** 
    7          *  
    8          */ 
     13         
     14        /** The Constant serialVersionUID. */ 
    915        private static final long serialVersionUID = 6186633243145293781L; 
     16         
     17        /** The startindex. */ 
    1018        private int startindex; 
     19         
     20        /** The endindex. */ 
    1121        private int endindex; 
     22         
     23        /** The sequence id. */ 
    1224        private int sequenceId; 
    1325 
     26        /** 
     27         * Instantiates a new match occurence. 
     28         * 
     29         * @param startindex the startindex 
     30         * @param endindex the endindex 
     31         * @param sequenceId the sequence id 
     32         */ 
    1433        public MatchOccurence(int startindex, int endindex, int sequenceId) { 
    1534                this.startindex = startindex; 
     
    1837        } 
    1938 
     39        /** 
     40         * Gets the endindex. 
     41         * 
     42         * @return the endindex 
     43         */ 
    2044        public int getEndindex() { 
    2145                return endindex; 
    2246        } 
    2347 
     48        /** 
     49         * Gets the sequence id. 
     50         * 
     51         * @return the sequence id 
     52         */ 
    2453        public int getSequenceId() { 
    2554                return sequenceId; 
    2655        } 
    2756 
     57        /** 
     58         * Gets the startindex. 
     59         * 
     60         * @return the startindex 
     61         */ 
    2862        public int getStartindex() { 
    2963                return startindex; 
    3064        } 
    3165 
     66        /** 
     67         * Sets the endindex. 
     68         * 
     69         * @param endindex the new endindex 
     70         */ 
    3271        public void setEndindex(int endindex) { 
    3372                this.endindex = endindex; 
    3473        } 
    3574 
     75        /** 
     76         * Sets the sequence id. 
     77         * 
     78         * @param sequenceId the new sequence id 
     79         */ 
    3680        public void setSequenceId(int sequenceId) { 
    3781                this.sequenceId = sequenceId; 
    3882        } 
    3983 
     84        /** 
     85         * Sets the startindex. 
     86         * 
     87         * @param startindex the new startindex 
     88         */ 
    4089        public void setStartindex(int startindex) { 
    4190                this.startindex = startindex; 
Note: See TracChangeset for help on using the changeset viewer.