blob: 88ebbc8fedcf9a6729c6d6327f0f04c8e8ab0e2d [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.functionlibrarydsl.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 FunctionLibraryDslFormatter 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, "FunctionLibraryPackage");
ParserRule packageDef = ((ParserRule) _findRuleForName);
Grammar _grammar_1 = this.grammar.getGrammar();
AbstractRule _findRuleForName_1 = GrammarUtil.findRuleForName(_grammar_1, "FunctionLibraryGroup");
ParserRule groupDef = ((ParserRule) _findRuleForName_1);
Grammar _grammar_2 = this.grammar.getGrammar();
AbstractRule _findRuleForName_2 = GrammarUtil.findRuleForName(_grammar_2, "FunctionLibraryConverterGroup");
ParserRule convGroupDef = ((ParserRule) _findRuleForName_2);
Grammar _grammar_3 = this.grammar.getGrammar();
AbstractRule _findRuleForName_3 = GrammarUtil.findRuleForName(_grammar_3, "FunctionLibraryRating");
ParserRule ratingDef = ((ParserRule) _findRuleForName_3);
FormattingConfig.LinewrapLocator _setLinewrap = c.setLinewrap(2);
_setLinewrap.before(packageDef);
FormattingConfig.LinewrapLocator _setLinewrap_1 = c.setLinewrap(2);
_setLinewrap_1.before(groupDef);
FormattingConfig.LinewrapLocator _setLinewrap_2 = c.setLinewrap(2);
_setLinewrap_2.before(convGroupDef);
FormattingConfig.LinewrapLocator _setLinewrap_3 = c.setLinewrap(2);
_setLinewrap_3.before(ratingDef);
genericFormatter.genericFormatting(c, this.grammar, this.grammarAccess);
}
}