Skip to main content
summaryrefslogtreecommitdiffstats
blob: c3a39baf4efcb3c18a98dda6f4e30f64c3d97183 (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
51
52
53
54
55
56
57
58
59
60
61
62
/*****************************************************************************
 * Copyright (c) 2008 CEA LIST.
 *
 *
 * 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:
 *  Remi Schnekenburger (CEA LIST) Remi.Schnekenburger@cea.fr - Initial API and implementation
 *
 *****************************************************************************/

package org.eclipse.papyrus.parsers.texteditor.completionproposals;

import java.util.List;
import java.util.Vector;

import org.eclipse.jface.text.contentassist.CompletionProposal;
import org.eclipse.jface.text.contentassist.ICompletionProposal;
import org.eclipse.papyrus.parsers.messages.NFPMessages;

public class VSL_NumberLiteral_CompletionProposal implements ICompletionProposalComputer {

	/** Text inserted in the editor */
	final static private String[] TVL_NumberLiteral_Strings = { "", "", };

	/** Text displayed in the information window */
	final static private String[] TVL_NumberLiteral_StringsInfo = { NFPMessages.NumberLiteral_Integer_StringsInfo,
			NFPMessages.NumberLiteral_Real_StringsInfo, };

	/** Text displayed in the completion area window */
	final static private String[] TVL_NumberLiteral_StringName = { NFPMessages.NumberLiteral_Integer_StringName,
			NFPMessages.NumberLiteral_Real_StringName, };

	/*
	 * (non-Javadoc)
	 *
	 * @see
	 * com.cea.papyrus.classdiagram.parsers.texteditor.completionproposals.ICompletionProposalComputer
	 * #generateCompletionProposals(int, int, java.lang.String)
	 */
	public List<ICompletionProposal> generateCompletionProposals(int documentOffset, int selectionRange, String prefix) {
		Vector<ICompletionProposal> v = new Vector<ICompletionProposal>();

		// adds each Completion proposal
		ICompletionProposal proposal = null;

		// adds all name (static strings...)
		for (int i = 0; i < TVL_NumberLiteral_Strings.length; i++) {
			if (TVL_NumberLiteral_Strings[i].startsWith(prefix)) {
				proposal = new CompletionProposal(TVL_NumberLiteral_Strings[i], documentOffset - prefix.length(),
						prefix.length() + selectionRange, TVL_NumberLiteral_Strings[i].length(), null,
						TVL_NumberLiteral_StringName[i], null, TVL_NumberLiteral_StringsInfo[i]);
				v.add(proposal);
			}
		}

		return v;
	}
}

Back to the top