001/* 002 * To change this template, choose Tools | Templates 003 * and open the template in the editor. 004 */ 005package armyc2.c5isr.graphics2d; 006 007/** 008 * 009* 010 */ 011public class BufferedImage { 012 public static final int TYPE_INT_ARGB = 2; 013 public BufferedImage(int width, 014 int height, 015 int imageType) { 016 } 017 public Graphics2D createGraphics() 018 { 019 return new Graphics2D(); 020 } 021 public void flush() 022 { 023 return; 024 } 025 public double getWidth() 026 { 027 return 0; 028 } 029 public double getHeight() 030 { 031 return 0; 032 } 033}