blob: dc17e7476774b3325d1a240bf2d3c775e02b4995 [file] [log] [blame]
/*
* generated by Xtext 2.9.0.v201505180813
*/
package org.eclipse.fx.xtext.statemachine.formatting
import org.eclipse.xtext.formatting.impl.AbstractDeclarativeFormatter
import org.eclipse.xtext.formatting.impl.FormattingConfig
// import com.google.inject.Inject;
// import org.eclipse.fx.xtext.statemachine.services.StatemachineGrammarAccess
/**
* This class contains custom formatting declarations.
*
* See https://www.eclipse.org/Xtext/documentation/303_runtime_concepts.html#formatting
* on how and when to use it.
*
* Also see {@link org.eclipse.xtext.xtext.XtextFormattingTokenSerializer} as an example
*/
class StatemachineFormatter extends AbstractDeclarativeFormatter {
// @Inject extension StatemachineGrammarAccess
override protected void configureFormatting(FormattingConfig c) {
// It's usually a good idea to activate the following three statements.
// They will add and preserve newlines around comments
// c.setLinewrap(0, 1, 2).before(SL_COMMENTRule)
// c.setLinewrap(0, 1, 2).before(ML_COMMENTRule)
// c.setLinewrap(0, 1, 1).after(ML_COMMENTRule)
}
}