Source Code Cross Referenced for Evaluator.java in  » Scripting » rhino » org » mozilla » javascript » 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 » rhino » org.mozilla.javascript 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
002:         *
003:         * ***** BEGIN LICENSE BLOCK *****
004:         * Version: MPL 1.1/GPL 2.0
005:         *
006:         * The contents of this file are subject to the Mozilla Public License Version
007:         * 1.1 (the "License"); you may not use this file except in compliance with
008:         * the License. You may obtain a copy of the License at
009:         * http://www.mozilla.org/MPL/
010:         *
011:         * Software distributed under the License is distributed on an "AS IS" basis,
012:         * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
013:         * for the specific language governing rights and limitations under the
014:         * License.
015:         *
016:         * Contributor(s):
017:         *   Norris Boyd
018:         *
019:         * Alternatively, the contents of this file may be used under the terms of
020:         * the GNU General Public License Version 2 or later (the "GPL"), in which
021:         * case the provisions of the GPL are applicable instead of those above. If
022:         * you wish to allow use of your version of this file only under the terms of
023:         * the GPL and not to allow others to use your version of this file under the
024:         * MPL, indicate your decision by deleting the provisions above and replacing
025:         * them with the notice and other provisions required by the GPL. If you do
026:         * not delete the provisions above, a recipient may use your version of this
027:         * file under either the MPL or the GPL.
028:         *
029:         * ***** END LICENSE BLOCK ***** */
030:
031:        package org.mozilla.javascript;
032:
033:        import java.util.List;
034:
035:        /**
036:         * Abstraction of evaluation, which can be implemented either by an
037:         * interpreter or compiler.
038:         */
039:        public interface Evaluator {
040:
041:            /**
042:             * Compile the script or function from intermediate representation
043:             * tree into an executable form.
044:             *
045:             * @param compilerEnv Compiler environment
046:             * @param tree intermediate representation
047:             * @param encodedSource encoding of the source code for decompilation
048:             * @param returnFunction if true, compiling a function
049:             * @return an opaque object that can be passed to either
050:             *         createFunctionObject or createScriptObject, depending on the
051:             *         value of returnFunction
052:             */
053:            public Object compile(CompilerEnvirons compilerEnv,
054:                    ScriptOrFnNode tree, String encodedSource,
055:                    boolean returnFunction);
056:
057:            /**
058:             * Create a function object.
059:             *
060:             * @param cx Current context
061:             * @param scope scope of the function
062:             * @param bytecode opaque object returned by compile
063:             * @param staticSecurityDomain security domain
064:             * @return Function object that can be called
065:             */
066:            public Function createFunctionObject(Context cx, Scriptable scope,
067:                    Object bytecode, Object staticSecurityDomain);
068:
069:            /**
070:             * Create a script object.
071:             *
072:             * @param bytecode opaque object returned by compile
073:             * @param staticSecurityDomain security domain
074:             * @return Script object that can be evaluated
075:             */
076:            public Script createScriptObject(Object bytecode,
077:                    Object staticSecurityDomain);
078:
079:            /**
080:             * Capture stack information from the given exception.
081:             * @param ex an exception thrown during execution
082:             */
083:            public void captureStackInfo(RhinoException ex);
084:
085:            /**
086:             * Get the source position information by examining the stack.
087:             * @param cx Context
088:             * @param linep Array object of length >= 1; getSourcePositionFromStack
089:             *              will assign the line number to linep[0].
090:             * @return the name of the file or other source container
091:             */
092:            public String getSourcePositionFromStack(Context cx, int[] linep);
093:
094:            /**
095:             * Given a native stack trace, patch it with script-specific source
096:             * and line information
097:             * @param ex exception
098:             * @param nativeStackTrace the native stack trace
099:             * @return patched stack trace
100:             */
101:            public String getPatchedStack(RhinoException ex,
102:                    String nativeStackTrace);
103:
104:            /**
105:             * Get the script stack for the given exception
106:             * @param ex exception from execution
107:             * @return list of strings for the stack trace
108:             */
109:            public List getScriptStack(RhinoException ex);
110:
111:            /**
112:             * Mark the given script to indicate it was created by a call to
113:             * eval() or to a Function constructor.
114:             * @param script script to mark as from eval
115:             */
116:            public void setEvalScriptFlag(Script script);
117:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.