Modifier and Type | Method and Description |
---|---|
abstract java.util.Collection<Result> |
XmlCorrector.getCorrections()
Calculates every correction in the given threshold.
|
java.util.Collection<Result> |
XmlCorrectorMatrix.getCorrections() |
abstract Result |
XmlCorrector.getMinimalCorrections()
Calculates every minimal correction in the given threshold.
|
Result |
XmlCorrectorMatrix.getMinimalCorrections() |
Modifier and Type | Method and Description |
---|---|
java.util.Vector<java.lang.Integer> |
XmlCorrectorController.createResultFile(Result resultat)
Creates the result file for the given Result
|
void |
XmlCorrectorController.resultVerification(OperationSequence os,
int cost)
Verifies that the tree made from the OperationSequence is correct / has
the correct cost
|
Modifier and Type | Method and Description |
---|---|
Result |
TreeEditionMatrix.compare()
Method that will calculates every cell of the matrix and return the
result. null if there is no correction
|
Modifier and Type | Method and Description |
---|---|
java.util.Collection<OperationSequence> |
OperationSequence.abstractionToOperationSequences(Tree t)
Generates OperationSequence from the current one but without any
abstraction.
|
abstract int |
Operation.getCost(Tree tree)
Calculates the cost of the Operation on the given Tree
|
int |
OperationSequence.getCost(Tree t)
Calculates the global cost of the sequence for doing every Operations on
the Tree given
|
Modifier and Type | Method and Description |
---|---|
java.util.Collection<OperationSequence> |
AddMinimalTreeOperation.abstractionToOperationSequences(Tree t) |
java.util.Collection<OperationSequence> |
CorrectTreeOperation.abstractionToOperationSequences(Tree t) |
Modifier and Type | Method and Description |
---|---|
java.util.Collection<OperationSequence> |
RemoveTreeOperation.abstractionToOperationSequences(Tree t) |
java.util.Collection<OperationSequence> |
AddTreeOperation.abstractionToOperationSequences(Tree t) |
abstract java.util.Collection<OperationSequence> |
UpdateOperation.abstractionToOperationSequences(Tree t)
Generates a list of OperationSequence that can't contain any Operation
that is Abstract
|
java.util.Collection<OperationSequence> |
ReplaceTreeOperation.abstractionToOperationSequences(Tree t) |
Modifier and Type | Method and Description |
---|---|
OperationSequence |
Tree.getCreationOperationsSequence()
Returns an OperationSequence that can be used to create the current tree
from an empty tree
|
OperationSequence |
Tree.getRemoveOperationsSequence()
Returns an OperationSequence that can be used to remove completely the
current tree
|