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 SwingConstants {
23: static final int CENTER = 0;
24: static final int TOP = 1;
25: static final int LEFT = 2;
26: static final int BOTTOM = 3;
27: static final int RIGHT = 4;
28: static final int NORTH = 1;
29: static final int NORTH_EAST = 2;
30: static final int EAST = 3;
31: static final int SOUTH_EAST = 4;
32: static final int SOUTH = 5;
33: static final int SOUTH_WEST = 6;
34: static final int WEST = 7;
35: static final int NORTH_WEST = 8;
36: static final int HORIZONTAL = 0;
37: static final int VERTICAL = 1;
38: static final int LEADING = 10;
39: static final int TRAILING = 11;
40: static final int NEXT = 12;
41: static final int PREVIOUS = 13;
42: }
|