Package com.google.googlejavaformat.java
Class FormatFileCallable
- java.lang.Object
-
- com.google.googlejavaformat.java.FormatFileCallable
-
- All Implemented Interfaces:
java.util.concurrent.Callable<FormatFileCallable.Result>
class FormatFileCallable extends java.lang.Object implements java.util.concurrent.Callable<FormatFileCallable.Result>
Encapsulates information about a file to be formatted, including which parts of the file to format.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static classFormatFileCallable.Result
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Stringinputprivate JavaFormatterOptionsoptionsprivate CommandLineOptionsparametersprivate java.nio.file.Pathpath
-
Constructor Summary
Constructors Constructor Description FormatFileCallable(CommandLineOptions parameters, java.nio.file.Path path, java.lang.String input, JavaFormatterOptions options)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FormatFileCallable.Resultcall()private com.google.common.collect.RangeSet<java.lang.Integer>characterRanges(java.lang.String input)private java.lang.StringfixImports(java.lang.String input)
-
-
-
Field Detail
-
path
private final java.nio.file.Path path
-
input
private final java.lang.String input
-
parameters
private final CommandLineOptions parameters
-
options
private final JavaFormatterOptions options
-
-
Constructor Detail
-
FormatFileCallable
public FormatFileCallable(CommandLineOptions parameters, java.nio.file.Path path, java.lang.String input, JavaFormatterOptions options)
-
-
Method Detail
-
call
public FormatFileCallable.Result call()
- Specified by:
callin interfacejava.util.concurrent.Callable<FormatFileCallable.Result>
-
fixImports
private java.lang.String fixImports(java.lang.String input) throws FormatterException- Throws:
FormatterException
-
characterRanges
private com.google.common.collect.RangeSet<java.lang.Integer> characterRanges(java.lang.String input)
-
-