Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e255b6e45402575aa7229556579bbb116b2fbed5 (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
/*******************************************************************************
 * Copyright (c) 2012 Wind River Systems, 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:
 * Wind River Systems - initial API and implementation
 *******************************************************************************/

package org.eclipse.tcf.te.runtime.persistence.delegates;

import org.eclipse.core.runtime.Path;

/**
 * AbstractPathVariableDelegate
 */
public abstract class AbstractPathVariableDelegate extends AbstractVariableDelegate {

	/**
	 * Return true, if the key represents a path value.
	 * @param key The key to check.
	 * @return <code>true</code> if the key represents a path value.
	 */
	protected abstract boolean isPathKey(String key);

	/* (non-Javadoc)
	 * @see org.eclipse.tcf.te.runtime.persistence.AbstractVariableDelegate#useVariable(java.lang.String, java.lang.Object, java.lang.String, java.lang.String)
	 */
	@Override
	protected Object useVariable(String key, Object value, String variableName, String variableValue) {
		if (isPathKey(key) && value instanceof String) {
			String valuePath = new Path((String)value).toString();
			String variablePath = new Path(variableValue).toString();
			return super.useVariable(key, valuePath, variableName, variablePath);
		}

		return super.useVariable(key, value, variableName, variableValue);
	}
}

Back to the top