Help coderanch get a
new server
by contributing to the fundraiser
  • 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:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

How Is The Action Class Called??

 
Ranch Hand
Posts: 41
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Everyone, Im working on a project where the Action class extends itself from some other class, the "execute()" method is missing in the action class but is present in its superclass, my question is : how is action class called??..the constructor simply calls the constructor of the super class, BUT HOW DOES THE execute() METHOD IN THE SUPER CLASS GET CALLED??.
Heres some of the code from both the superclass and the actionclass.Please note, the path pointed to in the struts-config is that of the subclass or the ListViewActionClass:

The Action Class:


Now, the superclass:



Thanks in advance,
Ravissant Markenday
[ April 10, 2008: Message edited by: Ravissant Markandey ]
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Ravissant Markandey:
how is action class called?



The execute method is inherited by the derived class. Are you familiar with inheritance?
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic