CodeFormatter
instead (note: options have changed)public interface ICodeFormatter
Modifier and Type | Method and Description |
---|---|
String |
format(String string,
int indentationLevel,
int[] positions,
String lineSeparator)
Deprecated.
Formats the String
sourceString ,
and returns a string containing the formatted version. |
String format(String string, int indentationLevel, int[] positions, String lineSeparator)
sourceString
,
and returns a string containing the formatted version.string
- the string to formatindentationLevel
- the initial indentation level, used
to shift left/right the entire source fragment. An initial indentation
level of zero has no effect.positions
- an array of positions to map. These are
character-based source positions inside the original source,
arranged in non-decreasing order, for which corresponding positions in
the formatted source will be computed (so as to relocate elements associated
with the original source). It updates the positions array with updated
positions. If set to null
, then no positions are mapped.lineSeparator
- the line separator to use in formatted source,
if set to null
, then the platform default one will be used.
Copyright (c) 2000, 2015 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.