Package krasa.formatter.eclipse

Examples of krasa.formatter.eclipse.JavaCodeFormatterFacade


                                   @NotNull Project project) {
        super(original);
        this.settings = settings;

        notifier = new Notifier(project);
        eclipseCodeFormatterJava = new EclipseCodeFormatter(settings, project, original, new JavaCodeFormatterFacade(
                settings.getPathToConfigFileJava()));
        eclipseCodeFormatterJs = new EclipseCodeFormatter(settings, project, original, new JSCodeFormatterFacade(
                settings.getPathToConfigFileJS()));
    }
View Full Code Here


  public EclipseCodeStyleManager(@NotNull CodeStyleManager original, @NotNull Settings settings,
                   @NotNull Project project) {
    super(original);
    this.settings = settings;
    notifier = new Notifier(project);
    eclipseCodeFormatterJava = new EclipseCodeFormatter(settings, new JavaCodeFormatterFacade(
        settings.getJavaProperties()));
  }
View Full Code Here

TOP

Related Classes of krasa.formatter.eclipse.JavaCodeFormatterFacade

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.