示例#1
0
 /** [Advanced] */
 public Graphics create(int x, int y, int width, int height) {
   Graphics2D g = getG();
   return g == null ? null : g.create(x, y, width, height);
 }
示例#2
0
 /** [Advanced] */
 public Graphics create() {
   Graphics2D g = getG();
   return g == null ? null : g.create();
 }