source: branches/ralph/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/MatchOccurence.java @ 1620

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

More intelligent match finding and creation

File size: 456 bytes
Line 
1package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms;
2
3public class MatchOccurence {
4        private int startindex;
5        private int sequenceId;
6        public MatchOccurence(int startindex, int sequenceId) {
7                this.startindex = startindex;
8                this.sequenceId = sequenceId;
9        }
10        public int getStartindex() {
11                return startindex;
12        }
13        public void setStartindex(int startindex) {
14                this.startindex = startindex;
15        }
16        public int getSequenceId() {
17                return sequenceId;
18        }
19}
Note: See TracBrowser for help on using the repository browser.