• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

what is the default return value for doStartTag

 
Ranch Hand
Posts: 224
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If I do not have doStartTag method in my tag handler. What is the default reutrn value.
case 1)my handler class extends the TagSupport class.
case 2)my handler class extends the BodyTagSupport class.
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Win Yu:
If I do not have doStartTag method in my tag handler. What is the default reutrn value.
case 1)my handler class extends the TagSupport class.
SKIP_BODY
case 2)my handler class extends the BodyTagSupport class.
EVAL_BODY_BUFFERED


 
Win Yu
Ranch Hand
Posts: 224
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks,Lily. How do you know that, did you get it from the book.
 
Lily Luoli
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Win Yu:
Thanks,Lily. How do you know that, did you get it from the book.



learn to check api of java doc.
Lily
reply
    Bookmark Topic Watch Topic
  • New Topic