Source Code Cross Referenced for Box.java in  » Apache-Harmony-Java-SE » javax-package » javax » swing » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Apache Harmony Java SE » javax package » javax.swing 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         *  Licensed to the Apache Software Foundation (ASF) under one or more
003:         *  contributor license agreements.  See the NOTICE file distributed with
004:         *  this work for additional information regarding copyright ownership.
005:         *  The ASF licenses this file to You under the Apache License, Version 2.0
006:         *  (the "License"); you may not use this file except in compliance with
007:         *  the License.  You may obtain a copy of the License at
008:         *
009:         *     http://www.apache.org/licenses/LICENSE-2.0
010:         *
011:         *  Unless required by applicable law or agreed to in writing, software
012:         *  distributed under the License is distributed on an "AS IS" BASIS,
013:         *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014:         *  See the License for the specific language governing permissions and
015:         *  limitations under the License.
016:         */
017:
018:        package javax.swing;
019:
020:        import java.awt.AWTError;
021:        import java.awt.Component;
022:        import java.awt.Container;
023:        import java.awt.Dimension;
024:        import java.awt.LayoutManager;
025:        import javax.accessibility.Accessible;
026:        import javax.accessibility.AccessibleContext;
027:        import javax.accessibility.AccessibleRole;
028:
029:        import org.apache.harmony.x.swing.internal.nls.Messages;
030:
031:        public class Box extends JComponent implements  Accessible {
032:            private static final long serialVersionUID = 1525417495883046342L;
033:
034:            protected class AccessibleBox extends
035:                    Container.AccessibleAWTContainer {
036:                private static final long serialVersionUID = -7676166747466316885L;
037:
038:                protected AccessibleBox() {
039:                    super ();
040:                }
041:
042:                @Override
043:                public AccessibleRole getAccessibleRole() {
044:                    return AccessibleRole.FILLER;
045:                }
046:            };
047:
048:            public static class Filler extends JComponent implements  Accessible {
049:                private static final long serialVersionUID = -1204263191910183998L;
050:
051:                private Dimension minimumBoxSize;
052:
053:                private Dimension preferredBoxSize;
054:
055:                private Dimension maximumBoxSize;
056:
057:                protected class AccessibleBoxFiller extends
058:                        Component.AccessibleAWTComponent {
059:                    private static final long serialVersionUID = 2256123275413517188L;
060:
061:                    protected AccessibleBoxFiller() {
062:                        super ();
063:                    }
064:
065:                    @Override
066:                    public AccessibleRole getAccessibleRole() {
067:                        return AccessibleRole.FILLER;
068:                    }
069:                };
070:
071:                protected AccessibleContext accessibleContext;
072:
073:                public Filler(Dimension minimumSize, Dimension preferredSize,
074:                        Dimension maximumSize) {
075:                    super ();
076:                    minimumBoxSize = minimumSize;
077:                    preferredBoxSize = preferredSize;
078:                    maximumBoxSize = maximumSize;
079:                }
080:
081:                public void changeShape(Dimension minimumSize,
082:                        Dimension preferredSize, Dimension maximumSize) {
083:                    minimumBoxSize = minimumSize;
084:                    preferredBoxSize = preferredSize;
085:                    maximumBoxSize = maximumSize;
086:                    invalidate();
087:                }
088:
089:                @Override
090:                public AccessibleContext getAccessibleContext() {
091:                    return (accessibleContext == null) ? (accessibleContext = new AccessibleBoxFiller())
092:                            : accessibleContext;
093:                }
094:
095:                @Override
096:                public Dimension getPreferredSize() {
097:                    return preferredBoxSize;
098:                }
099:
100:                @Override
101:                public Dimension getMinimumSize() {
102:                    return minimumBoxSize;
103:                }
104:
105:                @Override
106:                public Dimension getMaximumSize() {
107:                    return maximumBoxSize;
108:                }
109:            }
110:
111:            protected AccessibleContext accessibleContext;
112:
113:            public Box(int axisType) {
114:                super .setLayout(new BoxLayout(this , axisType));
115:            }
116:
117:            @Override
118:            public AccessibleContext getAccessibleContext() {
119:                return (accessibleContext == null) ? (accessibleContext = new AccessibleBox())
120:                        : accessibleContext;
121:            }
122:
123:            @Override
124:            public void setLayout(LayoutManager layout) {
125:                throw new AWTError(Messages.getString("swing.err.01")); //$NON-NLS-1$
126:            }
127:
128:            public static Component createRigidArea(Dimension size) {
129:                size = (size == null ? new Dimension(0, 0) : size);
130:
131:                return new Filler(new Dimension(size), new Dimension(size),
132:                        new Dimension(size));
133:            }
134:
135:            public static Box createVerticalBox() {
136:                return new Box(BoxLayout.Y_AXIS);
137:            }
138:
139:            public static Box createHorizontalBox() {
140:                return new Box(BoxLayout.X_AXIS);
141:            }
142:
143:            public static Component createVerticalStrut(int height) {
144:                return new Filler(new Dimension(0, height), new Dimension(0,
145:                        height), new Dimension(Short.MAX_VALUE, height));
146:            }
147:
148:            public static Component createHorizontalStrut(int width) {
149:                return new Filler(new Dimension(width, 0), new Dimension(width,
150:                        0), new Dimension(width, Short.MAX_VALUE));
151:            }
152:
153:            public static Component createVerticalGlue() {
154:                return new Filler(new Dimension(0, 0), new Dimension(0, 0),
155:                        new Dimension(0, Short.MAX_VALUE));
156:            }
157:
158:            public static Component createHorizontalGlue() {
159:                return new Filler(new Dimension(0, 0), new Dimension(0, 0),
160:                        new Dimension(Short.MAX_VALUE, 0));
161:            }
162:
163:            public static Component createGlue() {
164:                return new Filler(new Dimension(0, 0), new Dimension(0, 0),
165:                        new Dimension(Short.MAX_VALUE, Short.MAX_VALUE));
166:            }
167:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.