[ini4j]

org.ini4j.spi
Class XMLFormatter

Object
  extended by XMLFormatter
All Implemented Interfaces:
IniHandler, OptionHandler

public class XMLFormatter
extends Object
implements IniHandler


Constructor Summary
XMLFormatter()
           
 
Method Summary
 void endIni()
           
 void endSection()
           
protected  PrintWriter getOutput()
           
 void handleOption(String optionName, String optionValue)
           
protected static XMLFormatter newInstance()
           
static XMLFormatter newInstance(OutputStream out)
           
static XMLFormatter newInstance(Writer out)
           
protected  void setOutput(PrintWriter value)
           
 void startIni()
           
 void startSection(String sectionName)
           
 
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

XMLFormatter

public XMLFormatter()
Method Detail

newInstance

public static XMLFormatter newInstance(Writer out)

newInstance

public static XMLFormatter newInstance(OutputStream out)

endIni

public void endIni()
Specified by:
endIni in interface IniHandler

endSection

public void endSection()
Specified by:
endSection in interface IniHandler

handleOption

public void handleOption(String optionName,
                         String optionValue)
Specified by:
handleOption in interface OptionHandler

startIni

public void startIni()
Specified by:
startIni in interface IniHandler

startSection

public void startSection(String sectionName)
Specified by:
startSection in interface IniHandler

newInstance

protected static XMLFormatter newInstance()

getOutput

protected PrintWriter getOutput()

setOutput

protected void setOutput(PrintWriter value)

[ini4j]