blob: a6c22338ef461eecafbdb6b00eaffd5b8c695838 [file] [log] [blame]
/*
* Copyright (c) 2020 Eclipse contributors and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.eclipse.justj.codegen.templates.fragment;
import org.eclipse.justj.codegen.model.*;
public class FragmentProperties
{
protected static String nl;
public static synchronized FragmentProperties create(String lineSeparator)
{
nl = lineSeparator;
FragmentProperties result = new FragmentProperties();
nl = null;
return result;
}
public final String NL = nl == null ? (System.getProperties().getProperty("line.separator")) : nl;
protected static final String _1 = " ";
protected static final String _2 = " for ";
protected static final String _3 = "#";
protected static final String _4 = "pluginName = ";
protected static final String _5 = "providerName = ";
protected final String _6 = "";
protected final String _7 = NL + _3 + NL + NL + _5;
protected final String _8 = NL + _4;
public String generate(Object argument)
{
final StringBuilder builder = new StringBuilder();
Variant variant = (Variant)argument;
String variantLabel = variant.getLabel();
JVM jvm = variant.getJVM();
String jvmLabel = jvm.getLabel();
Model model = jvm.getModel();
String modelLabel = model.getLabel();
String provider = model.getProvider();
builder.append(_6);
builder.append(org.eclipse.justj.codegen.model.util.Generator.getCopyright(argument, "# ", NL));
builder.append(_7);
builder.append(provider);
builder.append(_8);
builder.append(modelLabel);
builder.append(_1);
builder.append(jvmLabel);
builder.append(_2);
builder.append(variantLabel);
builder.append(NL);
return builder.toString();
}
}