Source Code Cross Referenced for ObjectAttribute.java in  » Web-Server » Jigsaw » org » w3c » tools » resources » 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 » Web Server » Jigsaw » org.w3c.tools.resources 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // ObjectAttribute.java
002:        // $Id: ObjectAttribute.java,v 1.6 2002/06/09 11:23:34 ylafon Exp $
003:        // (c) COPYRIGHT MIT and INRIA, 1996.
004:        // Please first read the full copyright statement in file COPYRIGHT.html
005:
006:        package org.w3c.tools.resources;
007:
008:        /**
009:         * A generic Object attribute.
010:         * This attribute is usefull for attributes that are:
011:         * <ul>
012:         * <li>Have Object values.
013:         * <li>Need not be saved (have the DONTSAVE bit set).
014:         * </ul>
015:         */
016:
017:        public class ObjectAttribute extends Attribute {
018:            /**
019:             * The class for values of this attribute.
020:             */
021:            protected Class cls = null;
022:
023:            /**
024:             * Check that a value is allowed for this attribute.
025:             * @param value The value to check.
026:             * @return A boolean <strong>true</strong> if value is allowed.
027:             */
028:
029:            public boolean checkValue(Object value) {
030:                return true;
031:            }
032:
033:            /**
034:             * Pickle an integer to the given output stream.
035:             * @param obj The object to pickle.
036:             */
037:
038:            public String pickle(Object obj) {
039:                throw new RuntimeException("Can't pickle ObjectAttribute");
040:            }
041:
042:            /**
043:             * Unpickle an integer from the given input stream.
044:             * @param value the string representation of this integer
045:             * @return An instance of Integer.
046:             */
047:
048:            public Object unpickle(String value) {
049:                throw new RuntimeException("Can't pickle ObjectAttribute");
050:            }
051:
052:            public String stringify(Object value) {
053:                throw new RuntimeException("Can't pickle ObjectAttribute");
054:            }
055:
056:            /**
057:             * Create a new ObjectAttribute instance.
058:             * @param name The name of the attribute.
059:             * @param cls The class for this attribute values.
060:             * @param def The default value for this attribute.
061:             * @param flags The attribute flags.
062:             */
063:
064:            public ObjectAttribute(String name, Class cls, Object def, int flags) {
065:                super (name, def, flags);
066:                // Check consistency
067:                if (!checkFlag(DONTSAVE)) {
068:                    String error = "ObjectAttribute can't pickle themselves.";
069:                    throw new RuntimeException(error);
070:                }
071:                this .cls = cls;
072:            }
073:
074:            /**
075:             * Create a new ObjectAttribute instance.
076:             * @param name The name of the attribute.
077:             * @param cname The name class for this attribute values.
078:             * @param def The default value for this attribute.
079:             * @param flags The attribute flags.
080:             * @exception RuntimeException If we couldn't resolve the class name.
081:             */
082:
083:            public ObjectAttribute(String name, String cname, Object def,
084:                    int flags) {
085:                super (name, def, flags);
086:                // Check consistency:
087:                if (!checkFlag(DONTSAVE)) {
088:                    String error = "ObjectAttribute can't pickle themselves.";
089:                    throw new RuntimeException(error);
090:                }
091:                // Resolve the class:
092:                try {
093:                    this .cls = Class.forName(cname);
094:                } catch (Exception ex) {
095:                    throw new RuntimeException("unable to resolve class "
096:                            + cname);
097:                }
098:                this .type = "java.lang.Object".intern();
099:            }
100:
101:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.