package jetbrains.mps.baseLanguage.util; /*Generated by MPS */ import org.jetbrains.annotations.NotNull; public class CodeStyleSettings { public CodeStyleSettings() { } @NotNull public String getLineSeparatorValue() { return (this.getLineSeparator() != null ? this.getLineSeparator() : System.getProperty("line.separator")); } private String myFieldPrefix; public String getFieldPrefix() { return this.myFieldPrefix; } public void setFieldPrefix(String value) { this.myFieldPrefix = value; } private String myFieldSuffix; public String getFieldSuffix() { return this.myFieldSuffix; } public void setFieldSuffix(String value) { this.myFieldSuffix = value; } private String myStaticFieldPrefix; public String getStaticFieldPrefix() { return this.myStaticFieldPrefix; } public void setStaticFieldPrefix(String value) { this.myStaticFieldPrefix = value; } private String myStaticFieldSuffix; public String getStaticFieldSuffix() { return this.myStaticFieldSuffix; } public void setStaticFieldSuffix(String value) { this.myStaticFieldSuffix = value; } private String myParameterPrefix; public String getParameterPrefix() { return this.myParameterPrefix; } public void setParameterPrefix(String value) { this.myParameterPrefix = value; } private String myParameterSuffix; public String getParameterSuffix() { return this.myParameterSuffix; } public void setParameterSuffix(String value) { this.myParameterSuffix = value; } private String myLocalVariablePrefix; public String getLocalVariablePrefix() { return this.myLocalVariablePrefix; } public void setLocalVariablePrefix(String value) { this.myLocalVariablePrefix = value; } private String myLocalVariableSuffix; public String getLocalVariableSuffix() { return this.myLocalVariableSuffix; } public void setLocalVariableSuffix(String value) { this.myLocalVariableSuffix = value; } private String myLineSeparator; public String getLineSeparator() { return this.myLineSeparator; } public void setLineSeparator(String value) { this.myLineSeparator = value; } }