Home
last modified time | relevance | path

Searched refs:fOperationCode (Results 1 – 10 of 10) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/
H A DShiftAction.java38 private int fOperationCode= -1; field in ShiftAction
59 fOperationCode= operationCode; in ShiftAction()
70 if (fOperationCode == -1 || fOperationTarget == null) in run()
87 BusyIndicator.showWhile(display, () -> fOperationTarget.doOperation(fOperationCode)); in run()
102 if (fOperationTarget == null && editor != null && fOperationCode != -1) in update()
122 if (fOperationTarget == null && editor != null && fOperationCode != -1) in updateForTab()
125 boolean isEnabled= (fOperationTarget != null && fOperationTarget.canDoOperation(fOperationCode)); in updateForTab()
150 if (fOperationTarget == null && editor!= null && fOperationCode != -1) in isEnabled()
153 return (fOperationTarget != null && fOperationTarget.canDoOperation(fOperationCode)); in isEnabled()
H A DTextOperationAction.java40 private int fOperationCode= -1; field in TextOperationAction
74 fOperationCode= operationCode; in TextOperationAction()
100 fOperationCode= operationCode; in TextOperationAction()
113 if (fOperationCode == -1 || fOperationTarget == null) in run()
130 BusyIndicator.showWhile(display, () -> fOperationTarget.doOperation(fOperationCode)); in run()
152 if (fOperationTarget == null && editor!= null && fOperationCode != -1) in update()
155 boolean isEnabled= (fOperationTarget != null && fOperationTarget.canDoOperation(fOperationCode)); in update()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.debug/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/display/
H A DDisplayViewAction.java26 private int fOperationCode= -1; field in DisplayViewAction
36 fOperationCode= operationCode; in DisplayViewAction()
43 fOperationCode= operationCode; in DisplayViewAction()
54 if (fOperationCode != -1 && fOperationTarget != null) { in run()
55 fOperationTarget.doOperation(fOperationCode); in run()
67 if (fOperationTarget == null && fTargetProvider != null && fOperationCode != -1){ in update()
71 boolean isEnabled= (fOperationTarget != null && fOperationTarget.canDoOperation(fOperationCode)); in update()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.debug/org.eclipse.ui.console/src/org/eclipse/ui/console/actions/
H A DTextViewerAction.java31 private int fOperationCode= -1; field in TextViewerAction
42 fOperationCode= operationCode; in TextViewerAction()
60 boolean isEnabled= (fOperationTarget != null && fOperationTarget.canDoOperation(fOperationCode)); in update()
70 if (fOperationCode != -1 && fOperationTarget != null) { in run()
71 fOperationTarget.doOperation(fOperationCode); in run()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/
H A DClipboardOperationAction.java210 private int fOperationCode= -1; field in ClipboardOperationAction
226 fOperationCode= operationCode; in ClipboardOperationAction()
262 return fOperationCode == ITextOperationTarget.COPY; in isReadOnlyOperation()
268 if (fOperationCode == -1 || fOperationTarget == null) in run()
330 if (fOperationCode == ITextOperationTarget.PASTE) { in internalDoOperation()
336 fOperationTarget.doOperation(fOperationCode); in internalDoOperation()
350 if (fOperationTarget == null && editor!= null && fOperationCode != -1) in update()
353 boolean isEnabled= (fOperationTarget != null && fOperationTarget.canDoOperation(fOperationCode)); in update()
377 fOperationTarget.doOperation(fOperationCode); in doCutCopyWithImportsOperation()
529 fOperationTarget.doOperation(fOperationCode); in doPasteWithImportsOperation()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/
H A DEditTemplateDialog.java117 private int fOperationCode= -1; field in EditTemplateDialog.TextViewerAction
127 fOperationCode= operationCode; in TextViewerAction()
141 if (fOperationCode == ITextOperationTarget.UNDO || fOperationCode == ITextOperationTarget.REDO) in update()
145 boolean isEnabled= (fOperationTarget != null && fOperationTarget.canDoOperation(fOperationCode)); in update()
158 if (fOperationCode != -1 && fOperationTarget != null) { in run()
159 fOperationTarget.doOperation(fOperationCode); in run()
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/preferences/
H A DEditTemplateDialog.java87 private int fOperationCode = -1; field in EditTemplateDialog.TextViewerAction
100 fOperationCode = operationCode; in TextViewerAction()
115 .canDoOperation(fOperationCode)); in update()
129 if (fOperationCode != -1 && fOperationTarget != null) { in run()
130 fOperationTarget.doOperation(fOperationCode); in run()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/
H A DMergeSourceViewer.java117 private int fOperationCode; field in MergeSourceViewer.TextOperationAction
127 fOperationCode= operationCode; in TextOperationAction()
134 getSourceViewer().doOperation(fOperationCode); in run()
139 return fOperationCode != -1 && getSourceViewer().canDoOperation(fOperationCode); in isEnabled()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/templates/
H A DTemplatePreferencePage.java156 private int fOperationCode= -1; field in TemplatePreferencePage.EditTemplateDialog.TextViewerAction
166 fOperationCode= operationCode; in TextViewerAction()
180 if (fOperationCode == ITextOperationTarget.REDO || fOperationCode == ITextOperationTarget.REDO) in update()
184 … boolean isEnabled= (fOperationTarget != null && fOperationTarget.canDoOperation(fOperationCode)); in update()
197 if (fOperationCode != -1 && fOperationTarget != null) { in run()
198 fOperationTarget.doOperation(fOperationCode); in run()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/
H A DCompletionProposalPopup.java127 private final int fOperationCode; field in CompletionProposalPopup.ProposalSelectionHandler
137 fOperationCode= operationCode; in ProposalSelectionHandler()
147 switch (fOperationCode) { in execute()