Package | Description |
---|---|
migration.processeddifffile | |
migration.processor |
Modifier and Type | Field and Description |
---|---|
private ChangeType |
OneLineChange.classification
the classification of the change.
|
private ChangeType |
RelatedLinesChange.classification
classification of the change.
|
Modifier and Type | Method and Description |
---|---|
ChangeType |
OneLineChange.getChangeType() |
ChangeType |
RelatedLinesChange.getChangeType() |
ChangeType |
VariableDefinitionChange.getChangeType() |
static ChangeType |
ChangeType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChangeType[] |
ChangeType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
OneLineChange(DiffDefinition variableDefinition,
ChangeType classification)
creates a one line change.
|
RelatedLinesChange(DiffDefinition oldVariableDefinition,
DiffDefinition newVariableDefinition,
ChangeType classification)
Create a RelatedLinesChange.
|
Modifier and Type | Method and Description |
---|---|
private void |
ConcreteDiffFileProcessor.createOneLineChange(DiffPartFileLine line,
ChangeType classification,
java.util.Set<VariableDefinitionChange> changes)
creates a one line change for the line.
|
private void |
ConcreteDiffFileProcessor.processRemainingLines(java.util.List<DiffPartFileLine> remainingLines,
ChangeType classification,
java.util.Set<VariableDefinitionChange> changes)
creates one line changes with the given classification for each line.
|