/* * generated by Xtext */ package gr.upatras.ece.wcl.formatting; import org.eclipse.xtext.formatting.impl.AbstractDeclarativeFormatter; import org.eclipse.xtext.formatting.impl.FormattingConfig; /** * This class contains custom formatting description. * * see : http://www.eclipse.org/Xtext/documentation/latest/xtext.html#formatting * on how and when to use it * * Also see {@link org.eclipse.xtext.xtext.XtextFormattingTokenSerializer} as an example */ public class RadlFormatter extends AbstractDeclarativeFormatter { @Override protected void configureFormatting(FormattingConfig c) { gr.upatras.ece.wcl.services.RadlGrammarAccess f = (gr.upatras.ece.wcl.services.RadlGrammarAccess) getGrammarAccess(); //... } }