| org.netbeans.editor.ext.FormatLayer
All known Subclasses: org.netbeans.editor.ext.AbstractFormatLayer, org.netbeans.editor.ext.ExtFormatter,
FormatLayer | public interface FormatLayer (Code) | | Formatting layer that can be added to BaseFormatter to format the
tokens.
author: Miloslav Metelka version: 1.00 |
Method Summary | |
public void | format(FormatWriter fw) Format the tokens begining with the firstItem till the end.
Parameters: fw - format-writer to be formatted. | public String | getName() Get the name of the layer. |
format | public void format(FormatWriter fw)(Code) | | Format the tokens begining with the firstItem till the end.
Parameters: fw - format-writer to be formatted. The format-layer will usuallycreate the format-support as an abstraction level over theformat-layer. |
getName | public String getName()(Code) | | Get the name of the layer. This name is used to identify the layer when
it's being removed or replaced and it can be used for debugging purposes
too.
|
|
|