MCPcopy Index your code
hub / github.com/apache/tomcat / addFactoryCreate

Method addFactoryCreate

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

Add a "factory create" rule for the specified parameters. @param pattern Element matching pattern @param creationFactory Previously instantiated ObjectCreationFactory to be utilized @param ignoreCreateExceptions when true any exceptions thrown during object creati

(String pattern, ObjectCreationFactory creationFactory,
            boolean ignoreCreateExceptions)

Source from the content-addressed store, hash-verified

1759 * @see FactoryCreateRule
1760 */
1761 public void addFactoryCreate(String pattern, ObjectCreationFactory creationFactory,
1762 boolean ignoreCreateExceptions) {
1763
1764 creationFactory.setDigester(this);
1765 addRule(pattern, new FactoryCreateRule(creationFactory, ignoreCreateExceptions));
1766
1767 }
1768
1769 /**
1770 * Add an "object create" rule for the specified parameters.

Callers 1

openMethod · 0.95

Calls 2

addRuleMethod · 0.95
setDigesterMethod · 0.65

Tested by

no test coverage detected