You are viewing a plain text version of this content. The canonical link for it is here.
Posted to watchdog-dev@jakarta.apache.org by sa...@locus.apache.org on 2000/10/04 02:06:27 UTC

cvs commit: jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/extend positiveExtends.jsp

santosh     00/10/03 17:06:26

  Added:       src/server/jsp-tests/jsp/core_syntax/directives/page/extend
                        positiveExtends.jsp
  Log:
  watchdog 4.0
  
  Revision  Changes    Path
  1.1                  jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/extend/positiveExtends.jsp
  
  Index: positiveExtends.jsp
  ===================================================================
  <html>
  <title>positiveExtends</title>
  <body>
  <% /** 
         Name : positiveExtends
         Description: we use extends directive to point our own defined class
                      as super class to the jsp
         Result: we should get true to the expression after the directive
    */ %>
  <%@ page extends="core_syntax.directives.page.extend.SuperPage" %>
  <%= (this instanceof core_syntax.directives.page.extend.SuperPage ) %>
  </body>
  </html>