Method getGraphics()
Return type:
java.awt.Graphics
Member of:
java.awt.Component
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
this.paintAll(this.getGraphics());
2
drawButton(this.getGraphics(), DROPPER);
3
Graphics g = tb.getGraphics();
4
update(getGraphics());
5
this.graphics = component.getGraphics();
6
if (getGraphics() != null)
7
Graphics g = this.getGraphics ( );
8
this.status.update (this.status.getGraphics ());
9
if ( graphics == null ) graphics = getGraphics ( );
10
cFrame.paintComponents(cFrame.getGraphics());
11
update(getGraphics());
12
Graphics g = parent.getGraphics();
13
vehicle.stopDemo(getGraphics());
14
fmTitle= getGraphics().getFontMetrics(titleFont),
15
editedComp.getGraphics().getFontMetrics(),
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.