Class TextView
java.lang.Object
org.apache.hadoop.yarn.webapp.View
org.apache.hadoop.yarn.webapp.view.TextView
- All Implemented Interfaces:
Params
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.hadoop.yarn.webapp.View
View.ViewContext -
Field Summary
Fields inherited from interface org.apache.hadoop.yarn.webapp.Params
ERROR_DETAILS, TITLE, TITLE_LINK, USER -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidPrint strings escaping html.voidechoWithoutEscapeHtml(Object... args) Print strings as is (no newline, a la php echo).voidPrint strings as a line (new line appended at the end, a la C/Tcl puts).voidputWithoutEscapeHtml(Object args) Print string as a line.writer()
-
Constructor Details
-
TextView
-
-
Method Details
-
writer
-
echo
Print strings escaping html.- Parameters:
args- the strings to print
-
echoWithoutEscapeHtml
Print strings as is (no newline, a la php echo).- Parameters:
args- the strings to print
-
puts
Print strings as a line (new line appended at the end, a la C/Tcl puts).- Parameters:
args- the strings to print
-
putWithoutEscapeHtml
Print string as a line. This does not escapes the string for html- Parameters:
args- the strings to print
-