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

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

Removed unused code (bohoo, all the time i needed to write it)

File size: 730 bytes
Line 
1package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms;
2
3public class MatchOccurence {
4        private int startindex;
5        private int endindex;
6        private int sequenceId;
7       
8        public MatchOccurence(int startindex, int endindex, int sequenceId) {
9                this.startindex = startindex;
10                this.endindex = endindex;
11                this.sequenceId = sequenceId;
12        }
13       
14        public int getEndindex() {
15                return endindex;
16        }
17
18        public void setEndindex(int endindex) {
19                this.endindex = endindex;
20        }
21
22        public int getStartindex() {
23                return startindex;
24        }
25        public void setStartindex(int startindex) {
26                this.startindex = startindex;
27        }
28        public int getSequenceId() {
29                return sequenceId;
30        }
31
32        public void setSequenceId(int sequenceId) {
33                this.sequenceId = sequenceId;
34        }
35}
Note: See TracBrowser for help on using the repository browser.