MCPcopy Index your code
hub / github.com/processing/processing / toString

Method toString

core/src/processing/data/XML.java:1152–1156  ·  view source on GitHub ↗

Return the XML document formatted with two spaces for indents. Chosen to do this since it's the most common case (e.g. with println()). Same as format(2). Use the format() function for more options. @webref xml:method @brief Gets XML data as a String using default formatting @return the content @se

()

Source from the content-addressed store, hash-verified

1150 * @see XML#format(int)
1151 */
1152 @Override
1153 public String toString() {
1154 //return format(2);
1155 return format(-1);
1156 }
1157}

Callers 5

formatMethod · 0.45
odsParseSheetMethod · 0.45
setProcessingIconMethod · 0.45
executeMethod · 0.45
processMethod · 0.45

Calls 1

formatMethod · 0.95

Tested by

no test coverage detected