1 22 23 package de.laures.cewolf; 24 25 import java.io.IOException ; 26 import java.util.Date ; 27 28 29 33 public interface ChartImage { 34 35 public static final int IMG_TYPE_CHART = 0; 36 public static final int IMG_TYPE_LEGEND = 1; 37 38 42 public int getWidth(); 43 44 48 public int getHeight(); 49 50 56 public int getType(); 57 58 65 public byte[] getBytes() throws CewolfException; 66 67 71 public String getMimeType(); 72 73 78 public int getSize() throws CewolfException; 79 80 public Date getTimeoutTime(); 81 } 82 | Popular Tags |