pnuts.lang

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 » Pnuts » pnuts.lang 
pnuts.lang
This package provides the core of the Pnuts language processor.
Java Source File NameTypeComment
AbstractData.javaInterface Method call of an object implements this interface causes a call of the invoke() method.
AutoloadHook.javaInterface This interface defines how to find the value of a undefined variable.
BinaryOperator.javaClass
Binding.javaClass
BooleanOperator.javaClass
Builtin.javaClass
Callable.javaInterface Callable object can be the target of function call expression.
Configuration.javaClass This class defines the interface of runtime configuration, such as how to find method/field candidates, how to get the field value, how to get indexed elements, and so on.
ConfigurationConstants.javaClass
Context.javaClass Context represents an internal state of a particular script execution.
DefaultFunctionSerializer.javaClass
Escape.javaClass This class is a special Exception class in a Pnuts runtime in that it's not checked by exception handlers.
Executable.javaInterface Common interface for executable objects Objects that represents parsed/compiled scripts implement this interface, so that they can be executed by calling run(Context) method.
Function.javaClass This class represents a function with a certain number of parameters.
Generator.javaClass
ImmutableBinding.javaClass
Implementation.javaInterface
Import.javaClass
ImportEnv.javaClass
Indexed.javaInterface Index-access to an instance of this interface is interpreted as the set/get method call, which are defined in the implementation class.
Java2Configuration.javaClass This class define the interface of runtime configuration, such as how to find method/field candidates, how to get the field value, how to get indexed elements, and so on.
JavaBeansConfiguration.javaClass This is a configuration for JavaBeans.
JJTPnutsParserState.javaClass
Jump.javaClass This class is a special Exception class in a Pnuts runtime in that it's not checked by exception handlers.
MerlinConfiguration.javaClass This class defines the interface of runtime configuration, such as how to find method/field candidates, how to get the field value, how to get indexed elements, and so on.
ModuleList.javaClass
NamedValue.javaInterface Objects of this class are returned by Package.lookup() method.
Numeric.javaInterface In Pnuts, arithmetic operations for objects implements this interface causes a call of the corresponding methods in this interface.
Package.javaClass This class represents a Pnuts' package (not Java's).
PackageFactory.javaInterface The system property "pnuts.package.factory" is specified at startup time, the package(..) builtin function calls its createPackage() method of the specified class.
ParseEnvironment.javaInterface This class defines how to handle ParseException thrown by the parser.
ParseException.javaClass This exception is thrown when parse errors are encountered.
Pnuts.javaClass This class provides a set of static methods to parse/execute scripts.

This object also represents a parsed script.

PnutsException.javaClass This is a wrapper class for Exception to be thrown.
PnutsFunction.javaClass A PnutsFunction represents a group of Pnuts functions with a same name.

This class is serializable, whether the function is compiled or not. When an PnutsFunction object is serialized, the function definitions are written to the object stream, along with its attributes such as configuration, import environment, current package, and module list. Note that the current package is deeply copied, but the module list are written as an array of module names.

When the function is deserialized, the function definition is restored from the function definition read from the object stream.

PnutsImpl.javaClass This class defines an abstract interface of script interpreter's implementation, It also gives the default implementation, which is a pure interpreter.
PnutsInterpreter.javaClass
Property.javaInterface In Pnuts, access to a property of an object implements this interface causes a call of methods in this interface.
PublicMemberAccessor.javaClass This is a configuration for public field access.
QuantityFactory.javaInterface A factory class for unit numbers.
Runtime.javaClass This class provides runtime supports for Pnuts compiler/interpreter.
SimpleCharStream.javaClass
SimpleFunctionSerializer.javaClass
SimpleNode.javaClass This class respresents a node of AST.
StackFrame.javaClass
SymbolTable.javaClass
TigerConfiguration.javaClass
Token.javaClass Describes the input token stream.
UnaryOperator.javaClass Abstract base class of unary operations.
Value.javaInterface Objects of this class are returned by Package.lookup() method.
Visitor.javaInterface This is the interface of Visit operations for a syntax tree.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.