com.devonfw.cobigen.api.util.SystemUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-api Show documentation
Show all versions of core-api Show documentation
A Code-based incremental Generator
package com.devonfw.cobigen.api.util;
/**
* This util class provides system properties
*/
public class SystemUtil {
/**
* File separator, e.g for windows '\'
*/
public static final String FILE_SEPARATOR = java.lang.System.getProperty("file.separator");
/**
* Line separator, e.g. for windows '\r\n'
*/
public static final String LINE_SEPARATOR = java.lang.System.getProperty("line.separator");
}