01: package net.refractions.udig.project.internal.provider;
02:
03: import org.eclipse.swt.graphics.Image;
04:
05: /**
06: * Placeholder that will show up in viewers while the contentProvider is loading the data.
07: *
08: * @author Jesse
09: * @since 1.1.0
10: */
11: public interface LoadingPlaceHolder {
12: String getText();
13:
14: Image getImage();
15: }
|