Source Code Cross Referenced for PyNone.java in  » Scripting » jython » org » python » core » 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 » Scripting » jython » org.python.core 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // Copyright (c) Corporation for National Research Initiatives
002:        package org.python.core;
003:
004:        import java.io.Serializable;
005:
006:        /**
007:         * A class representing the singleton None object,
008:         */
009:        public class PyNone extends PyObject implements  Serializable {
010:
011:            //~ BEGIN GENERATED REGION -- DO NOT EDIT SEE gexpose.py
012:            /* type info */
013:
014:            public static final String exposed_name = "NoneType";
015:
016:            public static void typeSetup(PyObject dict, PyType.Newstyle marker) {
017:                class exposed___repr__ extends PyBuiltinMethodNarrow {
018:
019:                    exposed___repr__(PyObject self, PyBuiltinFunction.Info info) {
020:                        super (self, info);
021:                    }
022:
023:                    public PyBuiltinFunction bind(PyObject self) {
024:                        return new exposed___repr__(self, info);
025:                    }
026:
027:                    public PyObject __call__() {
028:                        return new PyString(((PyNone) self).NoneType_toString());
029:                    }
030:
031:                }
032:                dict.__setitem__("__repr__", new PyMethodDescr("__repr__",
033:                        PyNone.class, 0, 0, new exposed___repr__(null, null)));
034:                class exposed___nonzero__ extends PyBuiltinMethodNarrow {
035:
036:                    exposed___nonzero__(PyObject self,
037:                            PyBuiltinFunction.Info info) {
038:                        super (self, info);
039:                    }
040:
041:                    public PyBuiltinFunction bind(PyObject self) {
042:                        return new exposed___nonzero__(self, info);
043:                    }
044:
045:                    public PyObject __call__() {
046:                        return Py.newBoolean(((PyNone) self)
047:                                .NoneType___nonzero__());
048:                    }
049:
050:                }
051:                dict.__setitem__("__nonzero__", new PyMethodDescr(
052:                        "__nonzero__", PyNone.class, 0, 0,
053:                        new exposed___nonzero__(null, null)));
054:            }
055:
056:            //~ END GENERATED REGION -- DO NOT EDIT SEE gexpose.py
057:
058:            private static final PyType NONETYPE = PyType
059:                    .fromClass(PyNone.class);
060:
061:            PyNone() {
062:                super (NONETYPE);
063:            }
064:
065:            private Object writeReplace() {
066:                return new Py.SingletonResolver("None");
067:            }
068:
069:            public boolean __nonzero__() {
070:                return NoneType___nonzero__();
071:            }
072:
073:            final boolean NoneType___nonzero__() {
074:                return false;
075:            }
076:
077:            public Object __tojava__(Class c) {
078:                //Danger here.  java.lang.Object gets null not None
079:                if (c == PyObject.class)
080:                    return this ;
081:                if (c.isPrimitive())
082:                    return Py.NoConversion;
083:                return null;
084:            }
085:
086:            public String toString() throws PyIgnoreMethodTag {
087:                return NoneType_toString();
088:            }
089:
090:            final String NoneType_toString() {
091:                return "None";
092:            }
093:
094:            public boolean isMappingType() {
095:                return false;
096:            }
097:
098:            public boolean isSequenceType() {
099:                return false;
100:            }
101:
102:            public boolean isNumberType() {
103:                return false;
104:            }
105:
106:            public String asStringOrNull(int index) {
107:                return null;
108:            }
109:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.