blob: d51b85f9e9168e5650224523b9360a3c5f419429 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
*
* This copyright notice shows up in the generated Java code
*/
package org.eclipse.osbp.xtext.table.formatting;
import com.google.inject.Inject;
import org.eclipse.osbp.utils.xtext.GenericFormatter;
import org.eclipse.xtext.AbstractRule;
import org.eclipse.xtext.Grammar;
import org.eclipse.xtext.GrammarUtil;
import org.eclipse.xtext.ParserRule;
import org.eclipse.xtext.formatting.impl.AbstractDeclarativeFormatter;
import org.eclipse.xtext.formatting.impl.FormattingConfig;
import org.eclipse.xtext.xbase.services.XtypeGrammarAccess;
/**
* This class contains custom formatting description.
*
* see : http://www.eclipse.org/Xtext/documentation.html#formatting
* on how and when to use it
*
* Also see {@link org.eclipse.xtext.xtext.XtextFormattingTokenSerializer} as an example
*/
@SuppressWarnings("all")
public class TableDSLFormatter extends AbstractDeclarativeFormatter {
@Inject
private XtypeGrammarAccess grammarAccess;
protected void configureFormatting(final FormattingConfig c) {
final GenericFormatter genericFormatter = new GenericFormatter();
Grammar _grammar = this.grammar.getGrammar();
AbstractRule _findRuleForName = GrammarUtil.findRuleForName(_grammar, "NestedField");
ParserRule nestedFieldDef = ((ParserRule) _findRuleForName);
Grammar _grammar_1 = this.grammar.getGrammar();
AbstractRule _findRuleForName_1 = GrammarUtil.findRuleForName(_grammar_1, "PropertyStyle");
ParserRule propertyStyleDef = ((ParserRule) _findRuleForName_1);
Grammar _grammar_2 = this.grammar.getGrammar();
AbstractRule _findRuleForName_2 = GrammarUtil.findRuleForName(_grammar_2, "TableRangeElement");
ParserRule rangeElemetDef = ((ParserRule) _findRuleForName_2);
FormattingConfig.NoLinewrapLocator _setNoLinewrap = c.setNoLinewrap();
_setNoLinewrap.before(nestedFieldDef);
FormattingConfig.NoLinewrapLocator _setNoLinewrap_1 = c.setNoLinewrap();
_setNoLinewrap_1.before(propertyStyleDef);
FormattingConfig.NoLinewrapLocator _setNoLinewrap_2 = c.setNoLinewrap();
_setNoLinewrap_2.before(rangeElemetDef);
Grammar _grammar_3 = this.grammar.getGrammar();
genericFormatter.formatFirstLevelBlocks(c, _grammar_3, "Table", "TableImport");
genericFormatter.genericFormatting(c, this.grammar, this.grammarAccess);
}
}