Changeset 3463 for devel-tools/trunk
- Timestamp:
- Mar 6, 2008, 5:01:21 PM (13 years ago)
- Location:
- devel-tools/trunk/eclipse
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
devel-tools/trunk/eclipse/org.refal.plus.rfpdt.editor/META-INF/MANIFEST.MF
r3445 r3463 15 15 org.eclipse.ui.workbench.texteditor, 16 16 org.eclipse.jdt.ui, 17 org.refal.plus.rfpdt 17 org.refal.plus.rfpdt, 18 org.eclipse.jdt.debug, 19 org.eclipse.debug.ui 18 20 Eclipse-LazyStart: true 19 21 Bundle-RequiredExecutionEnvironment: J2SE-1.5 -
devel-tools/trunk/eclipse/org.refal.plus.rfpdt.editor/plugin.xml
r3398 r3463 34 34 point="org.eclipse.ui.popupMenus"> 35 35 <viewerContribution 36 id="org.refal.plus.rfpdt.editor. popupmenu"36 id="org.refal.plus.rfpdt.editor.editorContextMenu" 37 37 targetID="#TextEditorContext"> 38 38 <action 39 39 class="org.refal.plus.rfpdt.editor.ToggleCommentAction" 40 40 definitionId="org.refal.plus.rfpdt.editor.commands.ToggleComment" 41 id="org.refal.plus.rfpdt.editor. popupmenu.ToggleComment"41 id="org.refal.plus.rfpdt.editor.editorContextMenu.toggleComment" 42 42 label="Toggle Comment" 43 43 menubarPath="group.edit"/> … … 45 45 class="org.refal.plus.rfpdt.editor.IndentAction" 46 46 definitionId="org.refal.plus.rfpdt.editor.commands.CorrectIndent" 47 id="org.refal.plus.rfpdt.editor. popupmenu.CorrectIndent"47 id="org.refal.plus.rfpdt.editor.editorContextMenu.correctIndent" 48 48 label="Correct &Indentation" 49 49 menubarPath="group.edit"/> 50 </viewerContribution> 51 <viewerContribution 52 id="org.refal.plus.rfpdt.editor.rulerContextMenu" 53 targetID="#TextRulerContext"> 54 <action 55 label="Toggle Breakpoint" 56 icon="icons/brkp16.gif" 57 class="org.eclipse.debug.ui.actions.RulerToggleBreakpointActionDelegate" 58 menubarPath="debug" 59 id="org.refal.plus.rfpdt.editor.rulerContextMenu.toggleBreakpointAction"/> 50 60 </viewerContribution> 51 61 </extension> … … 80 90 label="&Format" 81 91 menubarPath="org.refal.plus.rfpdt.editor.RfpEditorSourceMenu/content"/> 92 <action 93 label="Not used" 94 class="org.eclipse.debug.ui.actions.RulerToggleBreakpointActionDelegate" 95 style="push" 96 actionID="RulerDoubleClick" 97 id="org.refal.plus.rfpdt.editor.doubleClickBreakpointAction"/> 82 98 </editorContribution> 83 99 </extension> … … 170 186 </page> 171 187 </extension> 188 <extension 189 point="org.eclipse.core.runtime.adapters"> 190 <factory 191 adaptableType="org.refal.plus.rfpdt.editor.RfpEditor" 192 class="org.refal.plus.rfpdt.editor.RetargettableActionAdapterFactory"> 193 <adapter type="org.eclipse.debug.ui.actions.IToggleBreakpointsTarget"/> 194 </factory> 195 </extension> 172 196 </plugin> -
devel-tools/trunk/eclipse/org.refal.plus.rfpdt.launch/plugin.xml
r3394 r3463 38 38 id="org.refal.plus.rfpdt.launch.shortcut" 39 39 label="Refal Plus Application" 40 modes="run ">40 modes="run, debug"> 41 41 <contextualLaunch> 42 42 <enablement> -
devel-tools/trunk/eclipse/org.refal.plus.rfpdt/src/org/refal/plus/rfpdt/core/builder/RfpBuilder.java
r3457 r3463 434 434 } 435 435 436 p rivatestatic String getModuleName (IResource resource) {436 public static String getModuleName (IResource resource) { 437 437 if (!(resource instanceof IFile)) 438 438 throw new IllegalArgumentException();
Note: See TracChangeset
for help on using the changeset viewer.