Example #1
0
 /**
  * Fetch a <code>Graphics</code> for rendering. This can be used to determine font
  * characteristics, and will be different for a print view than a component view.
  *
  * @return a <code>Graphics</code> object for rendering
  * @since 1.3
  */
 public Graphics getGraphics() {
   // PENDING(prinz) this is a temporary implementation
   Component c = getContainer();
   return c.getGraphics();
 }