-
Methods in org.eclipse.emf.compare that return DifferenceSource
| Modifier and Type |
Method |
Description |
static DifferenceSource |
DifferenceSource.get(int value) |
Returns the 'Difference Source' literal with the specified integer value.
|
static DifferenceSource |
DifferenceSource.get(java.lang.String literal) |
Returns the 'Difference Source' literal with the specified literal value.
|
static DifferenceSource |
DifferenceSource.getByName(java.lang.String name) |
Returns the 'Difference Source' literal with the specified name.
|
DifferenceSource |
Diff.getSource() |
Returns the value of the 'Source' attribute.
|
static DifferenceSource |
DifferenceSource.valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static DifferenceSource[] |
DifferenceSource.values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
-
Methods in org.eclipse.emf.compare.diff with parameters of type DifferenceSource
| Modifier and Type |
Method |
Description |
void |
DiffBuilder.attributeChange(Match match,
EAttribute attribute,
java.lang.Object value,
DifferenceKind kind,
DifferenceSource source) |
This will be called whenever the diff engine detected a difference for a given attribute value.
|
void |
IDiffProcessor.attributeChange(Match match,
EAttribute attribute,
java.lang.Object value,
DifferenceKind kind,
DifferenceSource source) |
This will be called whenever the diff engine detected a difference for a given attribute value.
|
protected void |
DefaultDiffEngine.createContainmentDifferences(Match match,
EReference reference,
boolean checkOrdering,
java.util.List<java.lang.Object> values,
java.util.List<java.lang.Object> lcsWithOrigin,
DifferenceSource side) |
|
protected void |
DefaultDiffEngine.createContainmentDifferencesNoOrdering(Match match,
EReference reference,
java.util.List<java.lang.Object> sideValues,
DifferenceSource side) |
This will iterate over the given list of values from a containment reference and create the differences
that can be detected from it.
|
protected void |
DefaultDiffEngine.createMultiValuedFeatureDifferencesNoOrdering(Match match,
EStructuralFeature feature,
java.util.List<java.lang.Object> sideValues,
java.util.List<java.lang.Object> originValues,
DifferenceSource side) |
This will iterate over the given list of values from a multi-valued feature and create the differences
that can be detected from it.
|
protected void |
DefaultDiffEngine.featureChange(Match match,
EStructuralFeature feature,
java.lang.Object value,
DifferenceKind kind,
DifferenceSource source) |
Delegates to the diff processor to create the specified feature change.
|
void |
DiffBuilder.featureMapChange(Match match,
EAttribute attribute,
java.lang.Object value,
DifferenceKind kind,
DifferenceSource source) |
This will be called whenever the diff engine detected a difference for a given attribute value.
|
void |
IDiffProcessor.featureMapChange(Match match,
EAttribute attribute,
java.lang.Object value,
DifferenceKind kind,
DifferenceSource source) |
This will be called whenever the diff engine detected a difference for a given attribute value.
|
void |
DiffBuilder.referenceChange(Match match,
EReference reference,
EObject value,
DifferenceKind kind,
DifferenceSource source) |
This will be called whenever the Diff engine detected a difference for a given reference value.
|
void |
IDiffProcessor.referenceChange(Match match,
EReference reference,
EObject value,
DifferenceKind kind,
DifferenceSource source) |
This will be called whenever the Diff engine detected a difference for a given reference value.
|
void |
DiffBuilder.resourceAttachmentChange(Match match,
java.lang.String uri,
DifferenceKind kind,
DifferenceSource source) |
This will be called whenever the diff engine detected the addition (or removal) of a root in a given
Resource.
|
void |
IDiffProcessor.resourceAttachmentChange(Match match,
java.lang.String uri,
DifferenceKind kind,
DifferenceSource source) |
This will be called whenever the diff engine detected the addition (or removal) of a root in a given
Resource.
|
void |
DiffBuilder.resourceLocationChange(MatchResource matchResource,
java.lang.String baseLocation,
java.lang.String changedLocation,
DifferenceKind kind,
DifferenceSource source) |
Deprecated.
|
void |
IDiffProcessor.resourceLocationChange(MatchResource matchResource,
java.lang.String baseLocation,
java.lang.String changedLocation,
DifferenceKind kind,
DifferenceSource source) |
This will be called whenever the diff engine detects the change of a Resource location.
|
-
-
-
-
-