01: package com.sun.portal.providers;
02:
03: /**
04: * This class defines the widths that can be returned from the
05: * <code>Provider.getWidth()</code> method.
06: *
07: * The width is a suggestion to a client of a provider object as to how
08: * much screen real estate should be given to display the provider's
09: * default view.
10: */
11:
12: public interface ProviderWidths {
13: /**
14: * Provider can be displayed in a "thick" frame.
15: */
16: public final static int WIDTH_THICK = 0;
17:
18: /**
19: * Provider can be displayed in a "thin" frame.
20: */
21: public final static int WIDTH_THIN = 1;
22:
23: /**
24: * Provider can be displayed in a "full" frame at the top.
25: */
26: public final static int WIDTH_FULL_TOP = 2;
27:
28: /**
29: * Provider can be displayed in a "full" frame at the bottom.
30: */
31: public final static int WIDTH_FULL_BOTTOM = 3;
32: }
|