Package
Class
Use
Tree
Deprecated
Index
Help
PREV NEXT
FRAMES
NO FRAMES
All Classes
All Classes
C
F
G
I
J
M
O
R
S
U
C
com.spidasoftware.EclipseFormatter
- package com.spidasoftware.EclipseFormatter
correctlyFormatted
- Variable in class com.spidasoftware.EclipseFormatter.
Format
createBackupFile(String, String)
- Static method in class com.spidasoftware.EclipseFormatter.
Formatter
A two-argument method that will take a fileName string and the contents of that file (before formatted), and return a backup file.
F
Format
- Class in
com.spidasoftware.EclipseFormatter
An abstract class that will format source code.
Format()
- Constructor for class com.spidasoftware.EclipseFormatter.
Format
A no argument constructor that will create a Format object.
format(String, String)
- Method in class com.spidasoftware.EclipseFormatter.
Format
A two-argument method that will take two strings, a fileName and its respective code and format the code.
format(String, String)
- Method in class com.spidasoftware.EclipseFormatter.
GroovyFormat
format(String, String)
- Method in class com.spidasoftware.EclipseFormatter.
JavaFormat
formatOne(File, CommandLine)
- Static method in class com.spidasoftware.EclipseFormatter.
Formatter
A three-argument method that will take a filename string, the contents of that file as a string (before formatted), and the Command-Line arguments and format the respective file.
Formatter
- Class in
com.spidasoftware.EclipseFormatter
Extracted various classes from Eclipse and Groovy-Eclipse to create an automatic java and groovy source code formatter.
Formatter()
- Constructor for class com.spidasoftware.EclipseFormatter.
Formatter
formatUsingExtension(File, CommandLine)
- Static method in class com.spidasoftware.EclipseFormatter.
Formatter
Format by using the extension of the file.
formatUsingHashBang(File, CommandLine)
- Static method in class com.spidasoftware.EclipseFormatter.
Formatter
Format by using the first line of the file.
G
getBracesEnd()
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A no-argument method that will return the value for where the braces end relative to the last line of code of the method, field, conditional, etc.
getBracesStart()
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A no-argument method that will return a value for where the braces will start relative to the method, field, conditional declaration, etc.
getIndentationMultiline()
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A no-argument method that returns the indentation level for wrapped lines.
getIndentationSize()
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A no-argument method that returns the value for the indentation size.
getLongListLength()
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A no-argument method that returns the value for the length of a square bracket list.
getMaxLineLength()
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A no-argument method that will return the value for the maximum length of a line of code.
getOptions(String[], Options)
- Static method in class com.spidasoftware.EclipseFormatter.
Formatter
A no-argument method that will return the command-line arguments as a CommandLine object.
getTabSize()
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A no-argument method returns the value for the size of a tab.
GroovyFormat
- Class in
com.spidasoftware.EclipseFormatter
The GroovyFormat class that will format groovy source code using the formatter classes from the Groovy-Eclipse open source project.
GroovyFormat()
- Constructor for class com.spidasoftware.EclipseFormatter.
GroovyFormat
A no argument constructor that will create a GroovyFormat object.
groovyFormatting(CommandLine)
- Static method in class com.spidasoftware.EclipseFormatter.
Formatter
If java option was set, return false
I
instantiateLogger()
- Static method in class com.spidasoftware.EclipseFormatter.
Formatter
A no-argument method used to intantiate the logger.
isFormatted()
- Method in class com.spidasoftware.EclipseFormatter.
Format
A no-argument method that will return a boolean indicating if the code has been formatted.
isIndentEmptyLines()
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A no-argument method that returns a boolean indicating if the formatter is indenting empty lines.
isRemoveUnnecessarySemicolons()
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A no-argument method that returns the boolean indicating if the formatter will remove unnecessary semicolons.
J
JavaFormat
- Class in
com.spidasoftware.EclipseFormatter
The JavaFormat class that will format java source code using the formatter classes from the Eclipse api.
JavaFormat()
- Constructor for class com.spidasoftware.EclipseFormatter.
JavaFormat
A no argument constructor that will create a JavaFormat object.
javaFormatting(CommandLine)
- Static method in class com.spidasoftware.EclipseFormatter.
Formatter
If groovy option was set, return false
M
main(String[])
- Static method in class com.spidasoftware.EclipseFormatter.
Formatter
This method will pass the command line arguments to the runFormatter method.
O
optionToFormat(CommandLine, String[])
- Static method in class com.spidasoftware.EclipseFormatter.
Formatter
A two argument method that takes a Command-Line object, as well as the string [], args, and initiates the formatting.
R
readInFile(String)
- Static method in class com.spidasoftware.EclipseFormatter.
Formatter
A one-argument method that will take a filename and return a string containing the contents of that file.
runFormatter(String[])
- Static method in class com.spidasoftware.EclipseFormatter.
Formatter
This method will perform the main logic of the program
S
setBracesEnd(int)
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A one-argument method that will set a new value for where the braces end relative to the last line of code of the method, field, conditional, etc.
setBracesStart(int)
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A one-argument method that will set a new value for where the braces will start relative to the method, field, conditional declaration, etc.
setIndentationMultiline(int)
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A one-argument method that sets a new value for the indentation level for wrapped lines.
setIndentationSize(int)
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A one-argument method that sets a new value for the indentation size.
setIndentEmptyLines(boolean)
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A one-argument method that takes a boolean indicating if the formatter will indent empty lines.
setLongListLength(int)
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A one-argument method that sets a new value for the length of a square bracket list.
setMaxLineLength(int)
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A one-argument method that will set a new value for the maximum length of a line of code.
setRemoveUnnecessarySemicolons(boolean)
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A one-argument method that takes a boolean indicating if the formatter will remove unnecessary semicolons.
setTabSize(int)
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
If the tabs are being used for formatting, then this one-argument method will set a new value for the size of a tab.
setUseTabs(boolean)
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A one-argument method that will take a boolean indicating whether to use tabs or not.
SpidaFormatterPreferences
- Class in
com.spidasoftware.EclipseFormatter
This class provides the client with various methods to set his or her desired groovy formatting preferences.
SpidaFormatterPreferences(IPreferenceStore)
- Constructor for class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A one argument constructor that takes an IPreferenceStore object.
U
useTabs()
- Method in class com.spidasoftware.EclipseFormatter.
SpidaFormatterPreferences
A no-argument method that will return a boolean indicating if the formatter is using tabs.
C
F
G
I
J
M
O
R
S
U
Package
Class
Use
Tree
Deprecated
Index
Help
PREV NEXT
FRAMES
NO FRAMES
All Classes
All Classes
Copyright © 2013. All rights reserved.