01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: /**
18: * @author Anton Avtamonov
19: * @version $Revision$
20: */package javax.swing;
21:
22: public interface ScrollPaneConstants {
23: static final String VIEWPORT = "VIEWPORT";
24: static final String VERTICAL_SCROLLBAR = "VERTICAL_SCROLLBAR";
25: static final String HORIZONTAL_SCROLLBAR = "HORIZONTAL_SCROLLBAR";
26: static final String ROW_HEADER = "ROW_HEADER";
27: static final String COLUMN_HEADER = "COLUMN_HEADER";
28: static final String LOWER_LEFT_CORNER = "LOWER_LEFT_CORNER";
29: static final String LOWER_RIGHT_CORNER = "LOWER_RIGHT_CORNER";
30: static final String UPPER_LEFT_CORNER = "UPPER_LEFT_CORNER";
31: static final String UPPER_RIGHT_CORNER = "UPPER_RIGHT_CORNER";
32: static final String LOWER_LEADING_CORNER = "LOWER_LEADING_CORNER";
33: static final String LOWER_TRAILING_CORNER = "LOWER_TRAILING_CORNER";
34: static final String UPPER_LEADING_CORNER = "UPPER_LEADING_CORNER";
35: static final String UPPER_TRAILING_CORNER = "UPPER_TRAILING_CORNER";
36: static final String VERTICAL_SCROLLBAR_POLICY = "VERTICAL_SCROLLBAR_POLICY";
37: static final String HORIZONTAL_SCROLLBAR_POLICY = "HORIZONTAL_SCROLLBAR_POLICY";
38: static final int VERTICAL_SCROLLBAR_AS_NEEDED = 20;
39: static final int VERTICAL_SCROLLBAR_NEVER = 21;
40: static final int VERTICAL_SCROLLBAR_ALWAYS = 22;
41: static final int HORIZONTAL_SCROLLBAR_AS_NEEDED = 30;
42: static final int HORIZONTAL_SCROLLBAR_NEVER = 31;
43: static final int HORIZONTAL_SCROLLBAR_ALWAYS = 32;
44: }
|