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
RevLine 
[1620]1package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms;
2
3public class MatchOccurence {
4        private int startindex;
[1657]5        private int endindex;
[1620]6        private int sequenceId;
[1657]7       
8        public MatchOccurence(int startindex, int endindex, int sequenceId) {
[1620]9                this.startindex = startindex;
[1657]10                this.endindex = endindex;
[1620]11                this.sequenceId = sequenceId;
12        }
[1657]13       
14        public int getEndindex() {
15                return endindex;
16        }
17
18        public void setEndindex(int endindex) {
19                this.endindex = endindex;
20        }
21
[1620]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        }
[1657]31
32        public void setSequenceId(int sequenceId) {
33                this.sequenceId = sequenceId;
34        }
[1620]35}
Note: See TracBrowser for help on using the repository browser.