.
Method from org.apache.tiles.jsp.context.JspPrintWriterAdapter Detail: |
public PrintWriter append(char c) {
try {
writer.append(c);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
return this;
}
|
public PrintWriter append(CharSequence csq) {
try {
writer.append(csq);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
return this;
}
|
public PrintWriter append(CharSequence csq,
int start,
int end) {
try {
writer.append(csq, start, end);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
return this;
}
|
public void close() {
try {
writer.close();
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void flush() {
try {
writer.flush();
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public JspWriter getJspWriter() {
return writer;
}
Returns the original JSP writer. |
public void print(boolean b) {
try {
writer.print(b);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void print(char c) {
try {
writer.print(c);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void print(char[] s) {
try {
writer.print(s);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void print(double d) {
try {
writer.print(d);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void print(float f) {
try {
writer.print(f);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void print(int i) {
try {
writer.print(i);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void print(long l) {
try {
writer.print(l);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void print(Object obj) {
try {
writer.print(obj);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void print(String s) {
try {
writer.print(s);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void println() {
try {
writer.println();
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void println(boolean x) {
try {
writer.println(x);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void println(char x) {
try {
writer.println(x);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void println(char[] x) {
try {
writer.println(x);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void println(double x) {
try {
writer.println(x);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void println(float x) {
try {
writer.println(x);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void println(int x) {
try {
writer.println(x);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void println(long x) {
try {
writer.println(x);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void println(Object x) {
try {
writer.println(x);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void println(String x) {
try {
writer.println(x);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void write(char[] buf) {
try {
writer.write(buf);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void write(int c) {
try {
writer.write(c);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void write(String s) {
try {
writer.write(s);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void write(char[] buf,
int off,
int len) {
try {
writer.write(buf, off, len);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|
public void write(String s,
int off,
int len) {
try {
writer.write(s, off, len);
} catch (IOException e) {
log.error("Error when writing in JspWriter", e);
setError();
}
}
|