Java Code Examples for org.jetbrains.java.decompiler.main.extern.IFernflowerPreferences#LINE_SEPARATOR_WIN

The following examples show how to use org.jetbrains.java.decompiler.main.extern.IFernflowerPreferences#LINE_SEPARATOR_WIN . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DecompilerContext.java    From javaide with GNU General Public License v3.0 4 votes vote down vote up
public static String getNewLineSeparator() {
    return getOption(IFernflowerPreferences.NEW_LINE_SEPARATOR) ?
            IFernflowerPreferences.LINE_SEPARATOR_UNX : IFernflowerPreferences.LINE_SEPARATOR_WIN;
}
 
Example 2
Source File: DecompilerContext.java    From JByteMod-Beta with GNU General Public License v2.0 4 votes vote down vote up
public static String getNewLineSeparator() {
  return getOption(IFernflowerPreferences.NEW_LINE_SEPARATOR) ? IFernflowerPreferences.LINE_SEPARATOR_UNX
      : IFernflowerPreferences.LINE_SEPARATOR_WIN;
}