C# Class cadencii.java.io.BufferedWriter

Show file Open project: cadencii/cadencii

Public Methods

Method Description
BufferedWriter ( FileWriter writer ) : System
BufferedWriter ( OutputStreamWriter writer ) : System
close ( ) : void
flush ( ) : void
newLine ( ) : void
write ( String str ) : void
write ( String s, int off, int len ) : void
write ( char cbuf ) : void
write ( char cbuf, int off, int len ) : void
write ( int c ) : void

Method Details

BufferedWriter() public method

public BufferedWriter ( FileWriter writer ) : System
writer FileWriter
return System

BufferedWriter() public method

public BufferedWriter ( OutputStreamWriter writer ) : System
writer OutputStreamWriter
return System

close() public method

public close ( ) : void
return void

flush() public method

public flush ( ) : void
return void

newLine() public method

public newLine ( ) : void
return void

write() public method

public write ( String str ) : void
str String
return void

write() public method

public write ( String s, int off, int len ) : void
s String
off int
len int
return void

write() public method

public write ( char cbuf ) : void
cbuf char
return void

write() public method

public write ( char cbuf, int off, int len ) : void
cbuf char
off int
len int
return void

write() public method

public write ( int c ) : void
c int
return void