Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b077f2b138bf0804ecdd55a9eb656a49ea86cadf (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
/*******************************************************************************
 * Copyright (c) 2014 Red Hat, Inc. 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:
 *     Red Hat - initial API and implementation
 *******************************************************************************/

package org.eclipse.linuxtools.internal.systemtap.ui.ide.editors.stp.proposals;

import org.eclipse.linuxtools.internal.systemtap.ui.ide.structures.TapsetItemType;
import org.eclipse.linuxtools.systemtap.structures.TreeNode;

public class STPFunctionCompletionProposal extends STPCompletionProposal {

    public STPFunctionCompletionProposal(TreeNode completionNode, int prefixLength,
            int replacementOffset) {
        super(completionNode, prefixLength, replacementOffset);
    }

    @Override
    protected String getReplacementString() {
        return super.getReplacementString().concat("()"); //$NON-NLS-1$
    }

    @Override
    protected int getCursorPosition() {
        return super.getCursorPosition() - 1;
    }

    @Override
    protected TapsetItemType getType() {
        return TapsetItemType.FUNCTION;
    }

}

Back to the top