• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

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?
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic