I'm unsure if these codebase comments are developer or documentation - please put this in the right place and email hagen@eng to let me know where it goes.
From: Jarl Fransson <###@###.###>
This does not look like form output to me.
This is part of awt.Component. * @version 1.65, 12/14/95
I wonder if " You can assume that the background is not cleared. " is
correct or why is the g.fillRect(0, 0, width, height); in the code?
Does it not work?
/Jarl
/**
* Updates the component. This method is called in
* response to a call to repaint. You can assume that
* the background is not cleared.
* @param g the specified Graphics window
* @see #paint
* @see #repaint
*/
public void update(Graphics g) {
g.setColor(getBackground());
g.fillRect(0, 0, width, height);
g.setColor(getForeground());
paint(g);
}
From: Jarl Fransson <###@###.###>
This does not look like form output to me.
This is part of awt.Component. * @version 1.65, 12/14/95
I wonder if " You can assume that the background is not cleared. " is
correct or why is the g.fillRect(0, 0, width, height); in the code?
Does it not work?
/Jarl
/**
* Updates the component. This method is called in
* response to a call to repaint. You can assume that
* the background is not cleared.
* @param g the specified Graphics window
* @see #paint
* @see #repaint
*/
public void update(Graphics g) {
g.setColor(getBackground());
g.fillRect(0, 0, width, height);
g.setColor(getForeground());
paint(g);
}