Skip to content
Snippets Groups Projects
Commit f05543f0 authored by Simon Barner's avatar Simon Barner
Browse files

GREEN

* Made getAllReferencesSetting() private

Issue-Ref: 3798
Issue-Url: https://af3-developer.fortiss.org/issues/3798



Signed-off-by: default avatarSimon Barner <barner@fortiss.org>
parent 645c4303
No related branches found
No related tags found
1 merge request!71Introduce updated `getAllReferences` method
......@@ -2,7 +2,7 @@ CompositionUtils.java 34c0a191bd0fb4176c94b4d61abb5c88a679d5e8 GREEN
ConstraintsUtils.java 0f8be020f2ca4bb08931c32452163c04a28e30ce GREEN
EMFResourceUtils.java 979d0e1f4f66a2b3e715d2da0ebef6493f547fd7 GREEN
EcoreSerializerBase.java 0a0c2969d793d2e68094c55c8f7b0a662ef6e5d5 GREEN
EcoreUtils.java df46cf243f57835936be5a6e4e892f9b2fc29f7e YELLOW
EcoreUtils.java 18416b5c214410a02eb35596fd807a1cc27d6b35 GREEN
ExtensionPointUtils.java 7ce63242b49eb9a7cd4eaadd223f5ebce1dfd75b GREEN
HierarchicalNameComparator.java 6face1b673126701a0721af48ead2f9766c17d46 GREEN
IdentifierUtils.java fff43dc4e84cdd89c3ece4f5d9d89aec4b0749c2 GREEN
......
......@@ -659,11 +659,10 @@ public class EcoreUtils {
*
* @param referencedEObject
* The {@link EObject}, to which all references are supposed to be retrieved.
* @return A {@link Collection}, containing all <EStructuralFeature.Setting>, which are
* references
* to 'referencedEObject'.
* @return A {@link Collection} containing all <EStructuralFeature.Setting>, which are
* references to 'referencedEObject'.
*/
public static Collection<EStructuralFeature.Setting>
private static Collection<EStructuralFeature.Setting>
getAllReferencesSetting(EObject referencedEObject) {
EObject rootEObject = getRootContainer(referencedEObject);
Resource resource = rootEObject.eResource();
......@@ -684,7 +683,7 @@ public class EcoreUtils {
*
* @param referencedEObject
* The {@link EObject}, to which all references are supposed to be retrieved.
* @return A {@link Collection}, containing the {@link EObject}s referencing the given
* @return A {@link Collection} containing the {@link EObject}s referencing the given
* 'referencedEObject'.
*/
public static Collection<EObject> getAllReferences(EObject referencedEObject) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment