Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 8612cd7597b6b3118ef61cd14c1003b40c8b4070 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                                
                                                       

                                                                        
                                                           
                                            
  


                                                                                 
 
                                                       
 

                                        

                             
  


                                                                               
 
                                            
                
                                               
     
 

                                          

                           

 
 
/*******************************************************************************
 * Copyright (c) 2000, 2011 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.debug.internal.ui.commands.actions;

import org.eclipse.jface.action.IAction;

/**
 * Step over action delegate.
 *
 * @since 3.3
 */
public class StepOverCommandActionDelegate extends DebugCommandActionDelegate {

    public StepOverCommandActionDelegate() {
        super();
        setAction(new StepOverCommandAction());
    }

    @Override
	public void init(IAction action) {
        super.init(action);
    }


}

Back to the top