Source Code Cross Referenced for DisabledField.java in  » Database-Client » executequery » org » underworldlabs » 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 » Database Client » executequery » org.underworldlabs.swing 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * DisabledField.java
003:         *
004:         * Copyright (C) 2002, 2003, 2004, 2005, 2006 Takis Diakoumis
005:         *
006:         * This program is free software; you can redistribute it and/or
007:         * modify it under the terms of the GNU General Public License
008:         * as published by the Free Software Foundation; either version 2
009:         * of the License, or any later version.
010:         *
011:         * This program is distributed in the hope that it will be useful,
012:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
013:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
014:         * GNU General Public License for more details.
015:         *
016:         * You should have received a copy of the GNU General Public License
017:         * along with this program; if not, write to the Free Software
018:         * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
019:         *
020:         */
021:
022:        package org.underworldlabs.swing;
023:
024:        import java.awt.Color;
025:        import java.awt.Component;
026:        import java.awt.Insets;
027:        import javax.swing.BorderFactory;
028:        import javax.swing.JLabel;
029:        import javax.swing.UIManager;
030:        import javax.swing.border.Border;
031:        import javax.swing.border.LineBorder;
032:
033:        /* ----------------------------------------------------------
034:         * CVS NOTE: Changes to the CVS repository prior to the 
035:         *           release of version 3.0.0beta1 has meant a 
036:         *           resetting of CVS revision numbers.
037:         * ----------------------------------------------------------
038:         */
039:
040:        /** 
041:         * A convenience class providing a simple component
042:         * to display text within a rectangle achieving the same
043:         * effect as displayed when disabling a <code>JTextField</code>
044:         * under the Metal L&F. This will provide a common 'disabled'
045:         * component across all L&Fs that remains lightweight and does
046:         * not feature or require those methods as would be available
047:         * using a <code>JTextField</code>.
048:         *
049:         * <p>Some limitations have been deliberately introduced. The
050:         * component height will always be 19px. The width is determined
051:         * as specified or by the layout manager. In any case, This
052:         * component's size should not require any modification given its
053:         * limited design and purpose.
054:         *
055:         * @author   Takis Diakoumis
056:         * @version  $Revision: 1.4 $
057:         * @date     $Date: 2006/05/14 06:56:07 $
058:         */
059:        public class DisabledField extends JLabel {
060:
061:            protected static Border border;
062:            protected static Insets insets;
063:
064:            /** <p>Creates a new instance with the text to be
065:             *  displayed as blank.
066:             */
067:            public DisabledField() {
068:                this ("");
069:            }
070:
071:            /** <p>Creates a new instance with the specified
072:             *  text to be displayed.
073:             *
074:             *  @param the text to display
075:             */
076:            public DisabledField(String text) {
077:                super (text);
078:
079:                if (insets == null || border == null) {
080:                    insets = new Insets(3, 3, 3, 3);
081:                    border = new DisabledBorder(UIManager
082:                            .getColor("TextField.inactiveForeground"));
083:                }
084:
085:                setBorder(border);
086:            }
087:
088:            class DisabledBorder extends LineBorder {
089:
090:                public DisabledBorder(Color color) {
091:                    super (color, 1, false);
092:                }
093:
094:                public Insets getBorderInsets() {
095:                    return DisabledField.insets;
096:                }
097:
098:                public Insets getBorderInsets(Component c, Insets insets) {
099:                    return DisabledField.insets;
100:                }
101:
102:            } // class DisabledBorder
103:
104:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.