What is update method and when it is called?
Answers were Sorted based on User's Feedback
Answer / raghuveer
update(Observable o,Object arg)
This method is called whenever the observed object is
changed. An application calls an Observable object's
notifyObservers method to have all the object's observers
notified of the change.
where:
o - the observable object.
arg - an argument passed to the notifyObservers method
| Is This Answer Correct ? | 17 Yes | 6 No |
Answer / mayank
The update() method is defined by the AWT and is
called when your applet has requested that a
portion of its window be redrawn. The problem is
that the default version of update() first fills
an applet with the default background colour and
then calls paint(). You can override the update()
method. The paint() in this case will simply call
update().
public void update(Graphic g) {
//Redisplay your window here.
}
public void paint(Graphics g) {
update(g); // call to the update()method.
}
| Is This Answer Correct ? | 10 Yes | 0 No |
What is callable java?
what is difference between business delegate and data access object(dao)? in java?
Can there be an abstract class with no abstract methods in it?
Explain wait() method of object class ?
Why should we create an object? what is a need of it? Apart from access members of a class i want what is a need of object what does it contain?? In normal class to access any member of thaht class we create object where as for static class we access its members using class name. what is a difference between them... thanks in advance.
What is a singleton factory?
What are the methods of object class ?
What does the append?
What is the generic function?
What does this() represent, and how is it used in Java?
can we access the method of class without creating the object of the class
Does garbage collection occur in permanent generation space in jvm?