blob: 8d109862fbe651d4b0795974afbf6673bb5cda5c [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* 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:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
*
* This copyright notice shows up in the generated Java code
*/
package org.eclipse.osbp.utils.constants;
import org.eclipse.xtend2.lib.StringConcatenation;
import org.eclipse.xtext.xbase.lib.Functions.Function0;
@SuppressWarnings("all")
public class PathConstants {
public final static String JS_PLUGIN_PREFIX = new Function0<String>() {
public String apply() {
StringConcatenation _builder = new StringConcatenation();
_builder.append("theme://plugin/");
return _builder.toString();
}
}.apply();
public final static String COMPEX_UTILS_JS_PLUGIN_PATH = new Function0<String>() {
public String apply() {
StringConcatenation _builder = new StringConcatenation();
_builder.append(PathConstants.JS_PLUGIN_PREFIX, "");
_builder.append("org.eclipse.osbp.utils.js/org/eclipse/osbp/utils/js/");
return _builder.toString();
}
}.apply();
}