MCPcopy Create free account
hub / github.com/apache/tomcat / writeProperty

Method writeProperty

java/org/apache/catalina/util/XMLWriter.java:112–116  ·  view source on GitHub ↗

Write property to the XML. @param namespace Namespace @param name Property name @param value Property value

(String namespace, String name, String value)

Source from the content-addressed store, hash-verified

110 * @param value Property value
111 */
112 public void writeProperty(String namespace, String name, String value) {
113 writeElement(namespace, name, OPENING);
114 buffer.append(value);
115 writeElement(namespace, name, CLOSING);
116 }
117
118
119 /**

Callers 1

propfindResourceMethod · 0.80

Calls 2

writeElementMethod · 0.95
appendMethod · 0.45

Tested by

no test coverage detected