Ignore:
Timestamp:
05/30/11 11:36:40 (13 years ago)
Author:
adeas31
Message:
  • Added new bundle org.modelica.mdt.breakpoint to avoid cycles.
  • Added GDB Debugger support.
  • New GDB Specific launch configuration.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/org.modelica.mdt.ui/src/org/modelica/mdt/ui/editor/ModelicaEditor.java

    r725 r791  
    4646
    4747import org.eclipse.core.runtime.IStatus;
     48import org.eclipse.debug.ui.actions.IToggleBreakpointsTarget;
     49import org.eclipse.debug.ui.actions.IToggleBreakpointsTargetExtension;
    4850import org.eclipse.jface.action.IAction;
    4951import org.eclipse.jface.action.IMenuManager;
     
    116118import org.modelica.mdt.ui.PreferenceConstants;
    117119import org.modelica.mdt.ui.UIPlugin;
     120import org.modelica.mdt.breakpoint.MDTBreakpointAdapter;
    118121import org.modelica.mdt.core.IModelicaElement;
    119122import org.modelica.mdt.core.IModelicaFile;
     
    134137 *
    135138 *  - modelica syntax highlighting
    136  *  - content assistant
     139 *  - content assiastant
    137140 *  - info-pops
    138141 *  - action that invokes content assist on ctrl+space
    139142 *  - folding(collapsing) of blocks of source code
    140  *  - outline synchronization
    141  *  - Modelica Project Viewer synchronization
     143 *  - outline syncronization
     144 *  - Modelica Project Viewer syncronization
    142145 *
    143146 * @author Adrian Pop
     
    574577        }
    575578       
     579        if (IToggleBreakpointsTarget.class.equals(adapter))
     580            return new MDTBreakpointAdapter();
    576581       
    577582        return super.getAdapter(adapter);
Note: See TracChangeset for help on using the changeset viewer.