oscript.data

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 » oscript 2.10.4 » oscript.data 
oscript.data
Java Source File NameTypeComment
AbstractReference.javaClass An abstract reference, which forwards requests to the referent, returned by AbstractReference.get .
BasicScope.javaClass Scope is an internal object use to represent a scope of execution.
BuiltinType.javaClass A BuiltinType instance is used to represent a built-in type. This is similar to JavaClassWrapper, in that it allows a java type to be sub-classed or instantiated, but it's difference is that it restricts access.
ComMethod.javaClass
ComObject.javaClass A wrapper for the JAWIN COM library, for accessing COM/ActiveX objects on a windows system.
ComProperty.javaClass
ConstructorScope.javaClass The ConstructorScope to implement the scope for a constructor, acting as a switch to cause private variables to be declared in a scope private to the constructor while public and protected members are in a scope shared by any parent and child classes.
Database.javaClass A database provides persistant storage....
Debugger.javaClass The Debugger object provides access to objects, including (not for java objects) access to the object's private members.
ForkScope.javaClass The ForkScope is used to implement a fork in the scope chain.
Function.javaClass A script function/constructor.
FunctionScope.javaClass The FunctionScope to implement the scope for a function.
GlobalScope.javaClass Each interpreter instance has a single global scope, which serves to terminate the scope chain.
JavaBridge.javaClass Utilities to convert between script and java types.
JavaClassWrapper.javaClass A wrapper for a java class.
JavaInnerClassWrapper.javaClass Inner class are basically just regular classes, except that we insert an extra arg when calling the constructor...
JavaMethodWrapper.javaClass A wrapper for a method of a java object.
JavaObjectWrapper.javaClass A wrapper for a java object.
JavaPackageWrapper.javaClass A wrapper for a java package.
OArray.javaClass An array instance.
OBoolean.javaClass A boolean type, can have either the value true or false.
OExactNumber.javaClass An exact number.
OException.javaClass Base class for the script type "Exception".
OIllegalArgumentException.javaClass At some point, we could perhaps make this a script type...
OInexactNumber.javaClass An inexact number is a non-integer number.
OJavaException.javaClass This class wraps a java exception object.
ONoSuchMemberException.javaClass At some point, we could perhaps make this a script type...
ONullReferenceException.javaClass At some point, we could perhaps make this a script type...
OObject.javaClass The built-in type Object, which is the type that implements the root of the inheritance hierarchy of all language types.
OSpecial.javaClass An OSpecial is used for different special values that aren't really members of any other type.
OString.javaClass A string class.
OUnsupportedOperationException.javaClass At some point, we could perhaps make this a script type...
Proxy.javaClass A proxy object acts as a proxy, all attempts to resolve a member go thru the resolve method which should be implemented by the derived script class.
Reference.javaClass A reference forwards all method calls to the object it is a reference for, but additionally a reference is assignable.
RegExp.javaClass A regular expression object.
RegExpResult.javaClass The result of executing a pattern against a string.
Scope.javaClass Scope is an internal object use to represent a scope of execution.
ScriptObject.javaClass A script-object is basically just a scope, but also provides java wrappers for all the methods defined in Value, which allows a lot of flexibility for script objects to extend built-in types, or implement built-in operators (methods), such as +, -, *, /, etc., etc.
ScriptPackage.javaClass The implementation of a package system for scripts.
SunRegExp.javaClass
SunRegExpResult.javaClass The implementation of RegExpResult using Sun's java.util.regex package that comes with j2se v1.4 and later.
Symbol.javaClass The Symbol is a type used internally by the scripting engine to represent identifiers, ie.
Type.javaClass XXX not sure if we need a common parent for all types, but we might end up with some common utility code.
Value.javaClass The base class of all values in the interpreter.
WeakReference.javaClass A weak reference to an object will not prevent the object from being garbage collected.
XmlRpc.javaClass Utility code for XmlRpcServer/XmlRpcClient, such as type conversion.
XmlRpcClient.javaClass A wrapper for the Apacle XML-RPC client library.
XmlRpcClientLite.javaClass A wrapper for the Apacle XML-RPC client lite library.
XmlRpcHandler.javaClass An XML-RPC handler that can wrap an arbitrary script object, for serving that object via XML-RPC.
XmlRpcMethod.javaClass
XmlRpcObject.javaClass An XML-RPC object.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.