Gridarta Editor
ExportMapProgress.java
Go to the documentation of this file.
1 package net.sf.gridarta.action.exportmap;
2 
3 import java.awt.image.BufferedImage;
4 import org.jetbrains.annotations.NotNull;
5 
9 public interface ExportMapProgress {
10 
15  void setMax(int max);
16 
22  void setValue(int value, @NotNull BufferedImage image);
23 
28  boolean cancel();
29 
30 }
net.sf.gridarta.action.exportmap.ExportMapProgress.cancel
boolean cancel()
net.sf.gridarta.action.exportmap.ExportMapProgress.setValue
void setValue(int value, @NotNull BufferedImage image)
net.sf.gridarta.action.exportmap.ExportMapProgress.setMax
void setMax(int max)
net.sf.gridarta.action.exportmap.ExportMapProgress
Definition: ExportMapProgress.java:9