KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > debug > internal > ui > commands > actions > DropToFrameCommandAction


1 /*******************************************************************************
2  * Copyright (c) 2005, 2007 IBM Corporation 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  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.debug.internal.ui.commands.actions;
12
13 import org.eclipse.debug.core.commands.IDropToFrameHandler;
14 import org.eclipse.debug.internal.ui.DebugPluginImages;
15 import org.eclipse.debug.internal.ui.IInternalDebugUIConstants;
16 import org.eclipse.debug.internal.ui.actions.ActionMessages;
17 import org.eclipse.jface.resource.ImageDescriptor;
18
19 /**
20  * Drop to frame action.
21  *
22  * @since 3.3
23  */

24 public class DropToFrameCommandAction extends DebugCommandAction {
25
26     public String JavaDoc getText() {
27         return ActionMessages.DropToFrameAction_0;
28     }
29
30     public String JavaDoc getHelpContextId() {
31         return "org.eclipse.debug.ui.drop_to_frame_action_context"; //$NON-NLS-1$
32
}
33
34     public String JavaDoc getId() {
35         return "org.eclipse.debug.ui.debugview.toolbar.dropToFrame"; //$NON-NLS-1$
36
}
37
38     public String JavaDoc getToolTipText() {
39         return ActionMessages.DropToFrameAction_3;
40     }
41
42     public ImageDescriptor getHoverImageDescriptor() {
43         return DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_ELCL_DROP_TO_FRAME);
44     }
45
46     public ImageDescriptor getImageDescriptor() {
47         return DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_ELCL_DROP_TO_FRAME);
48     }
49
50     public ImageDescriptor getDisabledImageDescriptor() {
51         return null;
52     }
53
54     protected Class JavaDoc getCommandType() {
55         return IDropToFrameHandler.class;
56     }
57 }
58
Popular Tags