1 26 27 package org.nightlabs.editor2d; 28 29 import java.awt.image.BufferedImage ; 30 31 import org.nightlabs.editor2d.j2d.GeneralShape; 32 33 34 public interface ImageDrawComponent 35 extends DrawComponent 36 { 37 40 public static final String PROP_IMAGE = "image"; 41 42 46 BufferedImage getImage(); 47 48 52 void setImage(BufferedImage value); 53 54 58 BufferedImage getOriginalImage(); 59 60 64 GeneralShape getImageShape(); 65 66 70 void setImageShape(GeneralShape newImageShape); 71 } | Popular Tags |