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

Method getExtends

java/org/apache/jasper/compiler/PageInfo.java:564–566  ·  view source on GitHub ↗

Gets the value of the 'extends' page directive attribute. @param useDefault TRUE if the default (org.apache.jasper.runtime.HttpJspBase) should be returned if this attribute has not been set, FALSE otherwise @return The value of the 'extends' page directive attribute, or the d

(boolean useDefault)

Source from the content-addressed store, hash-verified

562 * (org.apache.jasper.runtime.HttpJspBase) if this attribute has not been set and useDefault is TRUE
563 */
564 public String getExtends(boolean useDefault) {
565 return (xtends == null && useDefault ? defaultExtends : xtends);
566 }
567
568 /**
569 * Gets the value of the 'extends' page directive attribute.

Callers 3

visitMethod · 0.80
generatePreambleMethod · 0.80
GeneratorMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected