* Implement zero argument writeln() method to write a newline sequence.

This commit is contained in:
hns 2005-11-25 13:41:05 +00:00
parent ad8b7e11ec
commit 1ec82737bf

View file

@ -186,6 +186,13 @@ public class ResponseBean implements Serializable {
res.writeln(str); res.writeln(str);
} }
/**
* Write a platform dependent newline sequence to response buffer.
*/
public void writeln() {
res.writeln();
}
/** /**
* Directly write a byte array to the response buffer without any transformation. * Directly write a byte array to the response buffer without any transformation.
* *