01: /*
02: * @(#)${NAME}.java
03: *
04: * Copyright 2002 - 2005 JIDE Software Inc. All rights reserved.
05: */
06: package com.jidesoft.swing;
07:
08: import javax.swing.*;
09:
10: /**
11: * Constants used with the JideScrollPane component.
12: */
13: public interface JideScrollPaneConstants extends ScrollPaneConstants {
14: /**
15: * Identifies the area along the left side of the viewport between the
16: * upper right corner and the lower right corner.
17: */
18: public static final String ROW_FOOTER = "ROW_FOOTER";
19: /**
20: * Identifies the area at the top the viewport between the
21: * lower left corner and the lower right corner.
22: */
23: public static final String COLUMN_FOOTER = "COLUMN_FOOTER";
24:
25: public static final String HORIZONTAL_LEFT = "HORIZONTAL_LEFT"; //NOI18N
26: public static final String HORIZONTAL_RIGHT = "HORIZONTAL_RIGHT"; //NOI18N
27: public static final String HORIZONTAL_LEADING = "HORIZONTAL_LEADING"; //NOI18N
28: public static final String HORIZONTAL_TRAILING = "HORIZONTAL_TRAILING"; //NOI18N
29: public static final String VERTICAL_TOP = "VERTICAL_TOP"; //NOI18N
30: public static final String VERTICAL_BOTTOM = "VERTICAL_BOTTOM"; //NOI18N
31: }
|