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)
| 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. |
no outgoing calls
no test coverage detected