Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 529ca62f2fc8695e5f1c0b5e9cc023b923415536 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*******************************************************************************
 * Copyright (c) 2006 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Jeff Briggs, Henry Hughes, Ryan Morse, Anithra P j
 *     Roland Grunberg
 *******************************************************************************/

package org.eclipse.linuxtools.internal.systemtap.ui.consolelog.actions;

import java.net.URL;

import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.linuxtools.systemtap.ui.consolelog.structures.ScriptConsole;

/**
 * A basic core class that provides common methods that are needed by any
 * action that makes use of the Console.
 * @author Ryan Morse
 */
public abstract class ConsoleAction extends Action {

    protected ScriptConsole console;

    protected ConsoleAction(ScriptConsole fConsole,
            URL imagePath,
            String text,
            String toolTip) {
        this(fConsole, imagePath, text, toolTip, IAction.AS_PUSH_BUTTON);
    }

    protected ConsoleAction(ScriptConsole fConsole,
            URL imagePath,
            String text,
            String toolTip,
            int style) {
        super(null, style);
        console = fConsole;

        setImageDescriptor(ImageDescriptor.createFromURL(imagePath));
        setToolTipText(text);
        setText(toolTip);
    }
}

Back to the top