blob: 3de058237aa7155529496ac39405d07a2158439c [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.plugin;
public class AboutMappings
{
protected static String nl;
public static synchronized AboutMappings create(String lineSeparator)
{
nl = lineSeparator;
AboutMappings result = new AboutMappings();
nl = null;
return result;
}
public final String NL = nl == null ? (System.getProperties().getProperty("line.separator")) : nl;
protected static final String _1 = "0=${build.id}";
protected static final String _2 = "1=${git.commit}";
protected final String _3 = _1 + NL + _2;
public String generate(Object argument)
{
final StringBuilder builder = new StringBuilder();
builder.append(_3);
builder.append(NL);
return builder.toString();
}
}