Package com._1c.g5.v8.dt.bsl.ui.menu
Class AbstractBslBracketSearchHandler
- java.lang.Object
-
- org.eclipse.core.commands.common.EventManager
-
- org.eclipse.core.commands.AbstractHandler
-
- com._1c.g5.v8.dt.bsl.ui.menu.AbstractBslBracketSearchHandler
-
- All Implemented Interfaces:
org.eclipse.core.commands.IHandler,org.eclipse.core.commands.IHandler2
- Direct Known Subclasses:
BackBslBracketSearchHandler,BackBslBracketSearchWithSelectionHandler,ForwardBslBracketSearchHandler,ForwardBslBracketSearchWithSelectionHandler
public abstract class AbstractBslBracketSearchHandler extends org.eclipse.core.commands.AbstractHandlerSpecial handler for stepping between couple of procedure brackets in Bsl module
-
-
Field Summary
Fields Modifier and Type Field Description static Map<org.eclipse.emf.ecore.EClass,String[]>CLOSE_BRACKETSKeywords in lower case for close logical bracketsstatic Map<org.eclipse.emf.ecore.EClass,String[]>MIDDLE_BRACKETSKeywords in lower case for middle logical bracketsstatic Map<org.eclipse.emf.ecore.EClass,String[]>OPEN_BRACKETSKeywords in lower case for open logical brackets
-
Constructor Summary
Constructors Constructor Description AbstractBslBracketSearchHandler()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidexecuteBracketSearch(org.eclipse.core.commands.ExecutionEvent event, boolean searchForward)Executes bracket search in Bsl module (brackets: "(,)"; "[,]"; "if, elseIf, endIf"; "function, endFunction"; "procedure, endProcedure"; "For, While, EndDo"; "Try, Except, EndTry")voidexecuteBracketSearchWithSelection(org.eclipse.core.commands.ExecutionEvent event, boolean searchForward)Executes bracket search with selection in Bsl module (brackets: "(,)"; "[,]"; "if, elseIf, endIf"; "function, endFunction"; "procedure, endProcedure"; "For, While, EndDo"; "Try, Except, EndTry")static Collection<org.eclipse.jface.text.ITextSelection>getAllLogicalBrackets(org.eclipse.xtext.ui.editor.model.IXtextDocument document, int offset, org.eclipse.core.runtime.IProgressMonitor monitor)Gets allITextSelectioncorresponding to the logical brackets in Bsl language by offset-
Methods inherited from class org.eclipse.core.commands.AbstractHandler
addHandlerListener, dispose, fireHandlerChanged, hasListeners, isEnabled, isHandled, removeHandlerListener, setBaseEnabled, setEnabled
-
Methods inherited from class org.eclipse.core.commands.common.EventManager
addListenerObject, clearListeners, getListeners, isListenerAttached, removeListenerObject
-
-
-
-
Field Detail
-
OPEN_BRACKETS
public static final Map<org.eclipse.emf.ecore.EClass,String[]> OPEN_BRACKETS
Keywords in lower case for open logical brackets
-
MIDDLE_BRACKETS
public static final Map<org.eclipse.emf.ecore.EClass,String[]> MIDDLE_BRACKETS
Keywords in lower case for middle logical brackets
-
-
Method Detail
-
getAllLogicalBrackets
public static Collection<org.eclipse.jface.text.ITextSelection> getAllLogicalBrackets(org.eclipse.xtext.ui.editor.model.IXtextDocument document, int offset, org.eclipse.core.runtime.IProgressMonitor monitor)
Gets allITextSelectioncorresponding to the logical brackets in Bsl language by offset- Parameters:
document- actualIXtextDocumentfor getting logical brackets, cannot benulloffset- offset for getting logical bracketsmonitor- actualIProgressMonitorfor skipping process, cannot benull- Returns:
- all
ITextSelectioncorresponding to the logical brackets in Bsl language by offset, nevernull
-
executeBracketSearch
public void executeBracketSearch(org.eclipse.core.commands.ExecutionEvent event, boolean searchForward)Executes bracket search in Bsl module (brackets: "(,)"; "[,]"; "if, elseIf, endIf"; "function, endFunction"; "procedure, endProcedure"; "For, While, EndDo"; "Try, Except, EndTry")- Parameters:
event- currentExecutionEvent, can't benullsearchForward-trueif forward fast search,falseif back fast search
-
executeBracketSearchWithSelection
public void executeBracketSearchWithSelection(org.eclipse.core.commands.ExecutionEvent event, boolean searchForward)Executes bracket search with selection in Bsl module (brackets: "(,)"; "[,]"; "if, elseIf, endIf"; "function, endFunction"; "procedure, endProcedure"; "For, While, EndDo"; "Try, Except, EndTry")- Parameters:
event- currentExecutionEvent, can't benullsearchForward-trueif forward fast search,falseif back fast search
-
-