source: branches/autoquest-core-tasktrees-alignment/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/MatchOccurence.java @ 1717

Last change on this file since 1717 was 1717, checked in by rkrimmel, 10 years ago

Saving matseqs to file

File size: 866 bytes
Line 
1package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms;
2
3import java.io.Serializable;
4
5public class MatchOccurence implements Serializable{
6        /**
7         *
8         */
9        private static final long serialVersionUID = 6186633243145293781L;
10        private int startindex;
11        private int endindex;
12        private int sequenceId;
13       
14        public MatchOccurence(int startindex, int endindex, int sequenceId) {
15                this.startindex = startindex;
16                this.endindex = endindex;
17                this.sequenceId = sequenceId;
18        }
19       
20        public int getEndindex() {
21                return endindex;
22        }
23
24        public void setEndindex(int endindex) {
25                this.endindex = endindex;
26        }
27
28        public int getStartindex() {
29                return startindex;
30        }
31        public void setStartindex(int startindex) {
32                this.startindex = startindex;
33        }
34        public int getSequenceId() {
35                return sequenceId;
36        }
37
38        public void setSequenceId(int sequenceId) {
39                this.sequenceId = sequenceId;
40        }
41}
Note: See TracBrowser for help on using the repository browser.