01: package org.swingml;
02:
03: /**
04: * @author CrossLogic
05: */
06: public interface IRenderListener {
07:
08: /**
09: * Returns the name of the component this listener is listening for. If NULL
10: * is returned, it will be notified of all renderings.
11: *
12: * @return
13: */
14: public String getComponentName();
15:
16: /**
17: * Notified when a screen rendering has ended.
18: */
19: public void renderingEnded();
20:
21: /**
22: * Notified when a screen rendering has begun.
23: */
24: public void renderingStarted();
25: }
|