org.chromium.debug.ui/src/org/chromium/debug/ui/actions/JsBreakpointPropertiesRulerActionDelegate.java
changeset 358 dd7d3426144c
parent 357 1f666f57e777
parent 356 8e561bc07a21
child 362 f8c2079946be
equal deleted inserted replaced
357:1f666f57e777 358:dd7d3426144c
     1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
       
     2 // Use of this source code is governed by a BSD-style license that can be
       
     3 // found in the LICENSE file.
       
     4 
       
     5 package org.chromium.debug.ui.actions;
       
     6 
       
     7 import org.eclipse.jface.action.IAction;
       
     8 import org.eclipse.jface.text.source.IVerticalRulerInfo;
       
     9 import org.eclipse.ui.texteditor.AbstractRulerActionDelegate;
       
    10 import org.eclipse.ui.texteditor.ITextEditor;
       
    11 
       
    12 /**
       
    13  * Delegate for JsBreakpointPropertiesRulerAction.
       
    14  */
       
    15 public class JsBreakpointPropertiesRulerActionDelegate extends AbstractRulerActionDelegate {
       
    16 
       
    17   @Override
       
    18   protected IAction createAction(ITextEditor editor, IVerticalRulerInfo rulerInfo) {
       
    19     return new JsBreakpointPropertiesRulerAction(editor, rulerInfo);
       
    20   }
       
    21 
       
    22 }