Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3ec00e7f8b4105f77d0ed48f42a59c7b81e950a3 (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
/*******************************************************************************
 * Copyright (c) 2005-2009 itemis AG (http://www.itemis.eu) 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
 *
 *******************************************************************************/
package org.eclipse.internal.xpand2;

import org.eclipse.internal.xtend.expression.parser.SyntaxConstants;

/**
 * 
 * @author Sven Efftinge (http://www.efftinge.de) *
 */
public class XpandUtil {

	private static final String SLASH = "/";

	public static final String NS_DELIM = SyntaxConstants.NS_DELIM;

	public static final String TEMPLATE_EXTENSION = "xpt";

	public final static String getJavaResourceName(final String fqn) {
		return fqn.replaceAll(NS_DELIM, SLASH) + "." + TEMPLATE_EXTENSION;
	}

	public static String withoutLastSegment(final String fqn) {
		if (fqn == null || fqn.lastIndexOf(SyntaxConstants.NS_DELIM) == -1)
			return null;
		return fqn.substring(0, fqn.lastIndexOf(SyntaxConstants.NS_DELIM));
	}

	public static String getLastSegment(final String fqn) {
		if (fqn == null || fqn.lastIndexOf(SyntaxConstants.NS_DELIM) == -1)
			return fqn;
		return fqn.substring(fqn.lastIndexOf(SyntaxConstants.NS_DELIM) + SyntaxConstants.NS_DELIM.length());
	}

}

Back to the top