/** [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); }
/** [Advanced] */ public Graphics create() { Graphics2D g = getG(); return g == null ? null : g.create(); }