cdt/cdt_6_0_x/org.eclipse.cdt.dsf.gdb.ui/src/org/eclipse/cdt/dsf/gdb/internal/ui/GdbDebugTextHover.java
changeset 111 c2563c416525
equal deleted inserted replaced
110:9262ca4bdfff 111:c2563c416525
       
     1 /*******************************************************************************
       
     2  * Copyright (c) 2008 Wind River Systems and others.
       
     3  * All rights reserved. This program and the accompanying materials
       
     4  * are made available under the terms of the Eclipse Public License v1.0
       
     5  * which accompanies this distribution, and is available at
       
     6  * http://www.eclipse.org/legal/epl-v10.html
       
     7  * 
       
     8  * Contributors:
       
     9  *     Wind River Systems - initial API and implementation
       
    10  *******************************************************************************/
       
    11 package org.eclipse.cdt.dsf.gdb.internal.ui;
       
    12 
       
    13 import org.eclipse.cdt.dsf.debug.ui.AbstractDsfDebugTextHover;
       
    14 import org.eclipse.cdt.dsf.gdb.launching.GdbLaunchDelegate;
       
    15 
       
    16 /**
       
    17  * Debug editor text hover for GDB.
       
    18  * 
       
    19  * @since 2.1
       
    20  */
       
    21 public class GdbDebugTextHover extends AbstractDsfDebugTextHover {
       
    22 
       
    23     @Override
       
    24     protected String getModelId() {
       
    25         return GdbLaunchDelegate.GDB_DEBUG_MODEL_ID;
       
    26     }
       
    27 
       
    28 }