| Author |
passing stack elements to paint method
|
sowjanya vemulapally
Greenhorn
Joined: Mar 14, 2007
Posts: 1
|
|
hi I have problem passing elements from a stack to paint method. the problem is am poping elements from 2 stacks in main method and passing them to paint method and considering the elements from 1st stack as x coordinate and elements from 2nd stack as y coordinate and need to draw a ellipse on the window using these elements. my prob is while pasing them from main method to paint method the values are changing as null and am unable to pass them to paint method inspite of declaring them as global. can anyone help me in solving this. sowjanya
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24081
|
|
Hi, Welcome to JavaRanch! Since Java has no global variables, and the standard "paint()" method takes no user-supplied parameters, I'm afraid you're going to have to give us more to go one. Perhaps a bit of code showing where you "pass" the variables, and another bit where they're "received", and a third bit where they're declared.
|
[Jess in Action][AskingGoodQuestions]
|
 |
 |
|
|
subject: passing stack elements to paint method
|
|
|