예제 #1
0
 public boolean drawImage(
     Image img,
     int dx1,
     int dy1,
     int dx2,
     int dy2,
     int sx1,
     int sy1,
     int sx2,
     int sy2,
     ImageObserver observer) {
   if (logger.check(POILogger.WARN)) logger.log(POILogger.WARN, "drawImage not supported");
   return true;
 }
예제 #2
0
 public void translate(int x, int y) {
   if (logger.check(POILogger.WARN)) logger.log(POILogger.WARN, "translate not supported");
 }
예제 #3
0
 public void setXORMode(Color color) {
   if (logger.check(POILogger.WARN)) logger.log(POILogger.WARN, "setXORMode not supported");
 }
예제 #4
0
 public void setPaintMode() {
   if (logger.check(POILogger.WARN)) logger.log(POILogger.WARN, "setPaintMode not supported");
 }
예제 #5
0
 public void fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) {
   if (logger.check(POILogger.WARN)) logger.log(POILogger.WARN, "fillRoundRect not supported");
 }
예제 #6
0
 public void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle) {
   if (logger.check(POILogger.WARN)) logger.log(POILogger.WARN, "fillArc not supported");
 }
예제 #7
0
 public void drawString(AttributedCharacterIterator iterator, int x, int y) {
   if (logger.check(POILogger.WARN)) logger.log(POILogger.WARN, "drawString not supported");
 }
예제 #8
0
 public void drawRect(int x, int y, int width, int height) {
   if (logger.check(POILogger.WARN)) logger.log(POILogger.WARN, "drawRect not supported");
 }
예제 #9
0
 public void drawPolyline(int xPoints[], int yPoints[], int nPoints) {
   if (logger.check(POILogger.WARN)) logger.log(POILogger.WARN, "drawPolyline not supported");
 }
예제 #10
0
 public void copyArea(int x, int y, int width, int height, int dx, int dy) {
   if (logger.check(POILogger.WARN)) logger.log(POILogger.WARN, "copyArea not supported");
 }