Class AtlOccurrencesFinder
java.lang.Object
org.eclipse.m2m.atl.adt.ui.editor.AtlOccurrencesFinder
- All Implemented Interfaces:
IOccurrencesFinder
This class allows us to look into the model for the occurrence of the selected word (if there are). Several
problems are encountered:
- while the model isn't saved, the finder looks into the old model
- if there is an error in the model, the finder cannot go through it, and can only find occurrences before the error
- see also the query todo
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.eclipse.m2m.atl.adt.ui.editor.IOccurrencesFinder
IOccurrencesFinder.OccurrenceLocation
-
Field Summary
Fields inherited from interface org.eclipse.m2m.atl.adt.ui.editor.IOccurrencesFinder
F_EXCEPTION_DECLARATION, F_READ_OCCURRENCE, F_WRITE_OCCURRENCE, K_BREAK_TARGET_OCCURRENCE, K_EXCEPTION_OCCURRENCE, K_EXIT_POINT_OCCURRENCE, K_IMPLEMENTS_OCCURRENCE, K_OCCURRENCE
-
Constructor Summary
ConstructorsConstructorDescriptionAtlOccurrencesFinder
(AtlEditor editor, org.eclipse.jface.text.IDocument document) -
Method Summary
Modifier and TypeMethodDescriptionvoid
browseModel
(org.eclipse.emf.ecore.EObject element, String name, String featureName, String declarationType, String useType, String displayType) Browses the model in order to find occurrences of an element and add it to the result list.void
browseModelForType
(org.eclipse.emf.ecore.EObject element, String name) Browses the model in order to find occurrences of a type and add it to the result list.static Object
Returns the value of a feature on an EObject.Returns the name of the element to look for ornull
if the finder hasn't been initialized yet.getID()
Returns the id of this finder.Returns the occurrencesorg.eclipse.jface.text.IRegion
getRegionFromElement
(org.eclipse.emf.ecore.EObject element) Gets the region of the element (actually, it gives the region of the word that is interesting for us in the expression given by the element.int
Returns the plural label for this finder with 3 placeholders: {0} for theelement name
{1} for the number of results found {2} for the scope (name of the compilation unit)Returns the singular label for this finder with 2 placeholders: {0} for theelement name
{1} for the scope (name of the compilation unit)initialize
(org.eclipse.jface.text.IRegion selection) Initialization of the finder, with a text selection.static boolean
oclIsKindOf
(org.eclipse.emf.ecore.EObject element, String testedElementName) Equivalent of ASMOclAny oclIsKindOf method for EObjects.
-
Constructor Details
-
AtlOccurrencesFinder
-
-
Method Details
-
initialize
Initialization of the finder, with a text selection.- Parameters:
selection
- the current text selection- Returns:
- always null (this is not used here)
-
getJobLabel
- Specified by:
getJobLabel
in interfaceIOccurrencesFinder
-
getUnformattedPluralLabel
Description copied from interface:IOccurrencesFinder
Returns the plural label for this finder with 3 placeholders:- {0} for the
element name
- {1} for the number of results found
- {2} for the scope (name of the compilation unit)
- Specified by:
getUnformattedPluralLabel
in interfaceIOccurrencesFinder
- Returns:
- the unformatted label
- {0} for the
-
getUnformattedSingularLabel
Description copied from interface:IOccurrencesFinder
Returns the singular label for this finder with 2 placeholders:- {0} for the
element name
- {1} for the scope (name of the compilation unit)
- Specified by:
getUnformattedSingularLabel
in interfaceIOccurrencesFinder
- Returns:
- the unformatted label
- {0} for the
-
getElementName
Description copied from interface:IOccurrencesFinder
Returns the name of the element to look for ornull
if the finder hasn't been initialized yet.- Specified by:
getElementName
in interfaceIOccurrencesFinder
- Returns:
- the name of the element
-
getOccurrences
Returns the occurrences- Specified by:
getOccurrences
in interfaceIOccurrencesFinder
- Returns:
- the occurrences
- See Also:
-
eGet
Returns the value of a feature on an EObject.- Parameters:
self
- the EObjectfeatureName
- the feature name- Returns:
- the feature value
-
oclIsKindOf
Equivalent of ASMOclAny oclIsKindOf method for EObjects.- Parameters:
element
- the tested elementtestedElementName
- the type name- Returns:
True
element has testedElementName in its superTypes,False
else.
-
getRegionFromElement
public org.eclipse.jface.text.IRegion getRegionFromElement(org.eclipse.emf.ecore.EObject element) throws org.eclipse.jface.text.BadLocationException Gets the region of the element (actually, it gives the region of the word that is interesting for us in the expression given by the element.- Parameters:
element
- the expression we want to extract the word- Returns:
- the region of the interesting word of the given element
- Throws:
org.eclipse.jface.text.BadLocationException
-
browseModel
public void browseModel(org.eclipse.emf.ecore.EObject element, String name, String featureName, String declarationType, String useType, String displayType) throws org.eclipse.jface.text.BadLocationException Browses the model in order to find occurrences of an element and add it to the result list.- Parameters:
element
- the element we want the occurrences fromname
- the name of the element we are looking forfeatureName
- the name of the feature that allows us to find the name of the current navigated elementdeclarationType
- the type of the element that will be considered as "declaration" (different highlighting)useType
- the type of the element that will be considered as "occurrence" (different highlighting)displayType
- the type that is going to be displayed in the eclipse marker- Throws:
org.eclipse.jface.text.BadLocationException
-
browseModelForType
public void browseModelForType(org.eclipse.emf.ecore.EObject element, String name) throws org.eclipse.jface.text.BadLocationException Browses the model in order to find occurrences of a type and add it to the result list.- Parameters:
element
- the typename
- the name of the type- Throws:
org.eclipse.jface.text.BadLocationException
-
getSearchKind
public int getSearchKind()- Specified by:
getSearchKind
in interfaceIOccurrencesFinder
-
getID
Description copied from interface:IOccurrencesFinder
Returns the id of this finder.- Specified by:
getID
in interfaceIOccurrencesFinder
- Returns:
- returns the id of this finder.
-