org.mozilla.javascript

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 » rhino » org.mozilla.javascript 
org.mozilla.javascript
Java Source File NameTypeComment
Arguments.javaClass This class implements the "arguments" object.
BaseFunction.javaClass The base class for Function objects See ECMA 15.3.
Callable.javaInterface Generic notion of callable object that can execute some script-related code upon request with specified values for script scope and this objects.
ClassCache.javaClass Cache of generated classes and data structures to access Java runtime from JavaScript.
ClassDefinitionException.javaClass
ClassShutter.javaInterface Embeddings that wish to filter Java classes that are visible to scripts through the LiveConnect, should implement this interface.
CompilerEnvirons.javaClass
ConstProperties.javaInterface
Context.javaClass This class represents the runtime context of an executing script. Before executing a script, an instance of Context must be created and associated with the thread that will be executing the script. The Context will be used to store information about the executing of the script such as the call stack.
ContextAction.javaInterface Interface to represent arbitrary action that requires to have Context object associated with the current thread for its execution.
ContextFactory.javaClass Factory class that Rhino runtime uses to create new Context instances.
ContextListener.javaInterface
Decompiler.javaClass The following class save decompilation information about the source. Source information is returned from the parser as a String associated with function nodes and with the toplevel script.
DefaultErrorReporter.javaClass This is the default error reporter for JavaScript.
DefiningClassLoader.javaClass Load generated classes.
Delegator.javaClass This is a helper class for implementing wrappers around Scriptable objects.
DToA.javaClass
EcmaError.javaClass The class of exceptions raised by the engine as described in ECMA edition 3.
ErrorReporter.javaInterface This is interface defines a protocol for the reporting of errors during JavaScript translation or execution.
Evaluator.javaInterface Abstraction of evaluation, which can be implemented either by an interpreter or compiler.
EvaluatorException.javaClass The class of exceptions thrown by the JavaScript engine.
Function.javaInterface This is interface that all functions in JavaScript must implement.
FunctionNode.javaClass
FunctionObject.javaClass
GeneratedClassLoader.javaInterface Interface to define classes from generated byte code.
IdFunctionCall.javaInterface Master for id-based functions that knows their properties and how to execute them.
IdFunctionObject.javaClass
IdScriptableObject.javaClass Base class for native object implementation that uses IdFunctionObject to export its methods to script via .prototype object.
ImporterTopLevel.javaClass Class ImporterTopLevel This class defines a ScriptableObject that can be instantiated as a top-level ("global") object to provide functionality similar to Java's "import" statement.
InterfaceAdapter.javaClass Adapter to use JS function as implementation of Java interfaces with single method or multiple methods with the same signature.
InterpretedFunction.javaClass
Interpreter.javaClass
InterpreterData.javaClass
IRFactory.javaClass This class allows the creation of nodes, and follows the Factory pattern.
JavaAdapter.javaClass
JavaMembers.javaClass
JavaScriptException.javaClass Java reflection of JavaScript exceptions.
Kit.javaClass
LazilyLoadedCtor.javaClass Avoid loading classes unless they are used.
MemberBox.javaClass Wrappper class for Method and Constructor instances to cache getParameterTypes() results, recover from IllegalAccessException in some cases and provide serialization support.
NativeArray.javaClass This class implements the Array native object.
NativeBoolean.javaClass This class implements the Boolean native object.
NativeCall.javaClass This class implements the activation object.
NativeDate.javaClass This class implements the Date native object.
NativeError.javaClass
NativeFunction.javaClass This class implements the Function native object.
NativeGenerator.javaClass This class implements generator objects.
NativeGlobal.javaClass This class implements the global native object (function and value properties only).
NativeIterator.javaClass This class implements iterator objects.
NativeJavaArray.javaClass This class reflects Java arrays into the JavaScript environment.
NativeJavaClass.javaClass This class reflects Java classes into the JavaScript environment, mainly for constructors and static members.
NativeJavaConstructor.javaClass This class reflects a single Java constructor into the JavaScript environment.
NativeJavaMethod.javaClass This class reflects Java methods into the JavaScript environment and handles overloading of methods.
NativeJavaObject.javaClass This class reflects non-Array Java objects into the JavaScript environment.
NativeJavaPackage.javaClass This class reflects Java packages into the JavaScript environment.
NativeJavaTopPackage.javaClass This class reflects Java packages into the JavaScript environment.
NativeMath.javaClass This class implements the Math native object.
NativeNumber.javaClass This class implements the Number native object.
NativeObject.javaClass This class implements the Object native object.
NativeScript.javaClass The JavaScript Script object. Note that the C version of the engine uses XDR as the format used by freeze and thaw.
NativeString.javaClass This class implements the String native object. See ECMA 15.5. String methods for dealing with regular expressions are ported directly from C.
NativeWith.javaClass This class implements the object lookup required for the with statement.
Node.javaClass This class implements the root of the intermediate representation.
NodeTransformer.javaClass This class transforms a tree to a lower-level representation for codegen.
NotAFunctionException.javaClass
ObjArray.javaClass Implementation of resizable array with focus on minimizing memory usage by storing few initial array elements in object fields.
ObjToIntMap.javaClass Map to associate objects to integers.
Parser.javaClass This class implements the JavaScript parser.
PolicySecurityController.javaClass A security controller relying on Java Policy in effect.
PropertyException.javaClass
Ref.javaClass Generic notion of reference object that know how to query/modify the target objects based on some property/index.
RefCallable.javaInterface Object that can allows assignments to the result of function calls.
RegExpProxy.javaInterface A proxy for the regexp package, so that the regexp package can be loaded optionally.
RhinoException.javaClass The class of exceptions thrown by the JavaScript engine.
Script.javaInterface All compiled scripts implement this interface.
Scriptable.javaInterface This is interface that all objects in JavaScript must implement.
ScriptableObject.javaClass This is the default implementation of the Scriptable interface.
ScriptOrFnNode.javaClass
ScriptRuntime.javaClass This is the class that implements the runtime.
SecureCaller.javaClass
SecurityController.javaClass This class describes the support needed to implement security.

Three main pieces of functionality are required to implement security for JavaScript.

SecurityUtilities.javaClass
SpecialRef.javaClass
Synchronizer.javaClass This class provides support for implementing Java-style synchronized methods in Javascript.
Token.javaClass This class implements the JavaScript scanner.
TokenStream.javaClass This class implements the JavaScript scanner.
UintMap.javaClass Map to associate non-negative integers to objects or integers.
Undefined.javaClass This class implements the Undefined value in JavaScript.
UniqueTag.javaClass Class instances represent serializable tags to mark special Object values.
VMBridge.javaClass
WrapFactory.javaClass Embeddings that wish to provide their own custom wrappings for Java objects may extend this class and call Context.setWrapFactory(WrapFactory) Once an instance of this class or an extension of this class is enabled for a given context (by calling setWrapFactory on that context), Rhino will call the methods of this class whenever it needs to wrap a value resulting from a call to a Java method or an access to a Java field.
WrappedException.javaClass A wrapper for runtime exceptions.
Wrapper.javaInterface Objects that can wrap other values for reflection in the JS environment will implement Wrapper.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.