01: package org.wings.plaf;
02:
03: import java.util.Iterator;
04:
05: import org.wings.SComponent;
06:
07: public interface Update {
08:
09: public static final int FINE_GRAINED_UPDATE = 0;
10: public static final int FULL_REPLACE_UPDATE = 1;
11:
12: public SComponent getComponent();
13:
14: public int getProperty();
15:
16: public int getPriority();
17:
18: public Handler getHandler();
19:
20: public interface Handler {
21:
22: public String getName();
23:
24: /** Return the raw objects representing the parameters. */
25: public Iterator<Object> getParameters();
26:
27: }
28:
29: }
|