package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms; public class MatrixEntry { private double score; private MatrixEntry previous; private int xvalue; private int yvalue; public MatrixEntry(float score, MatrixEntry previous) { this.score = score; this.previous = previous; } public MatrixEntry() { } public double getScore() { return score; } public void setScore(double score) { this.score = score; } public MatrixEntry getPrevious() { return previous; } public void setPrevious(MatrixEntry previous) { this.previous = previous; } public int getXvalue() { return xvalue; } public void setXvalue(int xvalue) { this.xvalue = xvalue; } public int getYvalue() { return yvalue; } public void setYvalue(int yvalue) { this.yvalue = yvalue; } }