KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > cheatsheets > views > NoopAction


1 /*******************************************************************************
2  * Copyright (c) 2002, 2006 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.ui.internal.cheatsheets.views;
12
13 import org.eclipse.jface.action.Action;
14 import org.eclipse.jface.resource.ImageDescriptor;
15
16 public class NoopAction extends Action {
17
18     /**
19      * Constructor for NoopAction.
20      */

21     protected NoopAction() {
22         super();
23     }
24
25     /**
26      * Constructor for NoopAction.
27      * @param text
28      */

29     protected NoopAction(String JavaDoc text) {
30         super(text);
31     }
32
33     /**
34      * Constructor for NoopAction.
35      * @param text
36      * @param image
37      */

38     protected NoopAction(String JavaDoc text, ImageDescriptor image) {
39         super(text, image);
40     }
41
42
43
44 }
45
Popular Tags