plugins/org.symbian.tools.tmw.debug/src/org/symbian/tools/wrttools/debug/ui/actions/JsBreakpointPropertiesRulerActionDelegate.java
changeset 471 06589bf52fa7
parent 470 d4809db37847
child 472 bd9f2d7c64a6
equal deleted inserted replaced
470:d4809db37847 471:06589bf52fa7
     1 /*******************************************************************************
       
     2  * Copyright (c) 2009 Symbian Foundation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of the License "Eclipse Public License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Symbian Foundation - initial contribution.
       
    11  * Contributors:
       
    12  * Description:
       
    13  * Overview:
       
    14  * Details:
       
    15  * Platforms/Drives/Compatibility:
       
    16  * Assumptions/Requirement/Pre-requisites:
       
    17  * Failures and causes:
       
    18  *******************************************************************************/
       
    19 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
       
    20 // Use of this source code is governed by a BSD-style license that can be
       
    21 // found in the LICENSE file.
       
    22 
       
    23 package org.symbian.tools.wrttools.debug.ui.actions;
       
    24 
       
    25 import org.eclipse.jface.action.IAction;
       
    26 import org.eclipse.jface.text.source.IVerticalRulerInfo;
       
    27 import org.eclipse.ui.texteditor.AbstractRulerActionDelegate;
       
    28 import org.eclipse.ui.texteditor.ITextEditor;
       
    29 
       
    30 /**
       
    31  * Delegate for JsBreakpointPropertiesRulerAction.
       
    32  */
       
    33 public class JsBreakpointPropertiesRulerActionDelegate extends AbstractRulerActionDelegate {
       
    34 
       
    35   @Override
       
    36   protected IAction createAction(ITextEditor editor, IVerticalRulerInfo rulerInfo) {
       
    37     return new JsBreakpointPropertiesRulerAction(editor, rulerInfo);
       
    38   }
       
    39 
       
    40 }