This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Beginning Java and the fly likes Sequence of Method call Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Sequence of Method call" Watch "Sequence of Method call" New topic
Author

Sequence of Method call

Nagesh Vu
Greenhorn

Joined: Mar 18, 2010
Posts: 7
Hi,

I am lost in understanding the following piece of code:


Let me explain the way I understand this:
1. btnOpen object is instantiated of datatype Button.
2. setOnClickListener method on the object btnOpen is invoked. To this method we need to pass an object (I guess no variable is mentioned, but lets assume 'x' is passed).
a. As this object does not exist yet, a constructor for the object is invoked:

Here, I guess the author has actually coded the constructor.
b. Within the constructor, a method is invoked (on which object???).

Can someone explain me the method call sequence?

Thanks and Regards,
Nagesh
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19216

AWT and Swing event listeners are triggered by user interaction - a mouse click, key press, etc.


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Sequence of Method call
 
Similar Threads
How to retrieve string from EditText?
error while connecting to webservices
force closes
Date Dialog error message
interface and constructor