org.chromium.debug.ui/src/org/chromium/debug/ui/actions/JsBreakpointPropertiesRulerActionDelegate.java
changeset 2 e4420d2515f1
equal deleted inserted replaced
1:ef76fc2ac88c 2:e4420d2515f1
       
     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 }