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

Method configure

java/org/apache/tomcat/util/digester/Digester.java:1969–1981  ·  view source on GitHub ↗

Provide a hook for lazy configuration of this Digester instance. The default implementation does nothing, but subclasses can override as needed. Note This method may be called more than once.

()

Source from the content-addressed store, hash-verified

1967 * </p>
1968 */
1969 protected void configure() {
1970
1971 // Do not configure more than once
1972 if (configured) {
1973 return;
1974 }
1975
1976 log = LogFactory.getLog("org.apache.tomcat.util.digester.Digester");
1977 saxLog = LogFactory.getLog("org.apache.tomcat.util.digester.Digester.sax");
1978
1979 // Set the configuration flag to avoid repeating
1980 configured = true;
1981 }
1982
1983
1984 /**

Callers 3

startDocumentMethod · 0.95
parseMethod · 0.95
configureRedirectorMethod · 0.45

Calls 1

getLogMethod · 0.95

Tested by

no test coverage detected