Java Doc for Java2Configuration.java in  » Scripting » Pnuts » pnuts » lang » 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 » Pnuts » pnuts.lang 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   pnuts.lang.Configuration
      pnuts.lang.JavaBeansConfiguration
         pnuts.lang.Java2Configuration

All known Subclasses:   pnuts.lang.MerlinConfiguration,
Java2Configuration
class Java2Configuration extends JavaBeansConfiguration (Code)
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. This class also provides the default implmentation for Java2 of this interface.
See Also:   pnuts.lang.Configuration

Inner Class :static class ObjectArrayEnum implements Enumeration
Inner Class :static class ArrayEnum implements Enumeration
Inner Class :static class ItrEnum implements Enumeration
Inner Class :static class StringEnum implements Enumeration
Inner Class :static class Counter extends PnutsFunction
Inner Class :static class CounterEscape extends Escape

Field Summary
final static  longserialVersionUID
    

Constructor Summary
 Java2Configuration()
    
 Java2Configuration(Class stopClass)
    

Method Summary
public  ObjectcallMethod(Context context, Class c, String name, Object args, Class types, Object target)
    
 GeneratorfieldGenerator(Generator g, String name, Context context)
    
static  GeneratorfilterGenerator(Object array, PnutsFunction pred, Context context)
    
static  GeneratorfilterGenerator(Object[] array, PnutsFunction pred, Context context)
    
static  GeneratorfilterGenerator(Collection collection, PnutsFunction pred, Context context)
    
static  GeneratorfilterGenerator(Generator g, PnutsFunction pred, Context context)
    
static  ObjectgenerateNth(Generator g, int idx, Context context)
    
public  ObjectgetElement(Context context, Object target, Object key)
    
public  ObjectgetField(Context context, Object target, String name)
     Gets a field value of the target object.
protected  FieldgetField(Class cls, String name)
    
protected  ClassLoadergetInitialClassLoader()
    
public  ObjectgetRange(Context context, Object target, Object idx1, Object idx2)
    
public  ObjectgetStaticField(Context context, Class clazz, String name)
     Get the value of a static field.
public  voidputField(Context context, Object target, String name, Object value)
     Sets a field value of the specified object.
public  voidputStaticField(Context context, Class clazz, String name, Object value)
     Sets a value to the static field of the specified class.
 ObjectreInvoke(IllegalAccessException t, Method method, Object target, Object[] args)
    
 voidreplace(StringBuffer buf, int from, int to, String str)
    
public  voidsetElement(Context context, Object target, Object key, Object expr)
    
static  voidsetElements(Object target, int from, int to, Object expr)
    
public  ObjectsetRange(Context context, Object target, Object idx1, Object idx2, Object expr)
    
public  CallabletoCallable(Object obj)
    
public  EnumerationtoEnumeration(Object obj)
     Convert an object to Enumeration.

Field Detail
serialVersionUID
final static long serialVersionUID(Code)




Constructor Detail
Java2Configuration
Java2Configuration()(Code)



Java2Configuration
Java2Configuration(Class stopClass)(Code)




Method Detail
callMethod
public Object callMethod(Context context, Class c, String name, Object args, Class types, Object target)(Code)
Calls a method
Parameters:
  context - the contexct
Parameters:
  c - the class of the method
Parameters:
  name - the name of the method
Parameters:
  args - arguments
Parameters:
  types - type information of each arguments
Parameters:
  target - the target object of the method call the result of the method call



fieldGenerator
Generator fieldGenerator(Generator g, String name, Context context)(Code)



filterGenerator
static Generator filterGenerator(Object array, PnutsFunction pred, Context context)(Code)



filterGenerator
static Generator filterGenerator(Object[] array, PnutsFunction pred, Context context)(Code)



filterGenerator
static Generator filterGenerator(Collection collection, PnutsFunction pred, Context context)(Code)



filterGenerator
static Generator filterGenerator(Generator g, PnutsFunction pred, Context context)(Code)



generateNth
static Object generateNth(Generator g, int idx, Context context)(Code)



getElement
public Object getElement(Context context, Object target, Object key)(Code)



getField
public Object getField(Context context, Object target, String name)(Code)
Gets a field value of the target object.
Parameters:
  context - the context in which the field is read
Parameters:
  target - the target object
Parameters:
  name - the field name the field value



getField
protected Field getField(Class cls, String name) throws NoSuchFieldException(Code)



getInitialClassLoader
protected ClassLoader getInitialClassLoader()(Code)



getRange
public Object getRange(Context context, Object target, Object idx1, Object idx2)(Code)
Defines the semantices of an expression like:
 target[idx1..idx2]
 

Parameters:
  context - the context
Parameters:
  target - the target object
Parameters:
  idx1 - the start index
Parameters:
  idx2 - the end index, which can be null



getStaticField
public Object getStaticField(Context context, Class clazz, String name)(Code)
Get the value of a static field.
Parameters:
  context - the context in which the field is accessed
Parameters:
  clazz - the class in which the static field is defined
Parameters:
  name - the name of the static field the value



putField
public void putField(Context context, Object target, String name, Object value)(Code)
Sets a field value of the specified object.
Parameters:
  context - the context in which the field is written.
Parameters:
  target - the target object
Parameters:
  name - the field name
Parameters:
  value - the field value



putStaticField
public void putStaticField(Context context, Class clazz, String name, Object value)(Code)
Sets a value to the static field of the specified class.
Parameters:
  context - the context in which the field is written.
Parameters:
  clazz - the class in which the static field is defined
Parameters:
  name - the field name
Parameters:
  value - the field value



reInvoke
Object reInvoke(IllegalAccessException t, Method method, Object target, Object[] args) throws IllegalAccessException, InvocationTargetException(Code)



replace
void replace(StringBuffer buf, int from, int to, String str)(Code)



setElement
public void setElement(Context context, Object target, Object key, Object expr)(Code)



setElements
static void setElements(Object target, int from, int to, Object expr)(Code)



setRange
public Object setRange(Context context, Object target, Object idx1, Object idx2, Object expr)(Code)
Defines the semantices of an expression like:

 target[idx1..idx2] = expr
 


Parameters:
  context - the context in which the assignment is done
Parameters:
  target - the target object
Parameters:
  idx1 - the start index
Parameters:
  idx2 - the end index, which can be null
Parameters:
  expr - the new value of the indexed element



toCallable
public Callable toCallable(Object obj)(Code)



toEnumeration
public Enumeration toEnumeration(Object obj)(Code)
Convert an object to Enumeration. This method is used by foreach statements. Subclasses can override this method to customize the behavior of foreach statements.



Methods inherited from pnuts.lang.JavaBeansConfiguration
public Object callConstructor(Context context, Class c, Object[] args, Class[] types)(Code)(Java Doc)
public Object callMethod(Context context, Class c, String name, Object args, Class types, Object target)(Code)(Java Doc)
protected Object getBeanProperty(Context context, Object target, String name)(Code)(Java Doc)
public Constructor[] getConstructors(Class cls)(Code)(Java Doc)
public Object getField(Context context, Object target, String name)(Code)(Java Doc)
public Method[] getMethods(Class cls)(Code)(Java Doc)
protected Class getStopClass()(Code)(Java Doc)
public void putField(Context context, Object target, String name, Object value)(Code)(Java Doc)
protected void setBeanProperty(Context context, Object target, String name, Object value)(Code)(Java Doc)

Fields inherited from pnuts.lang.Configuration
protected BinaryOperator _add(Code)(Java Doc)
protected UnaryOperator _add1(Code)(Java Doc)
protected BinaryOperator _and(Code)(Java Doc)
protected BinaryOperator _divide(Code)(Java Doc)
protected BooleanOperator _eq(Code)(Java Doc)
protected BooleanOperator _ge(Code)(Java Doc)
protected BooleanOperator _gt(Code)(Java Doc)
String[] _imports(Code)(Java Doc)
protected BooleanOperator _le(Code)(Java Doc)
protected BooleanOperator _lt(Code)(Java Doc)
protected BinaryOperator _mod(Code)(Java Doc)
protected BinaryOperator _multiply(Code)(Java Doc)
protected UnaryOperator _negate(Code)(Java Doc)
protected UnaryOperator _not(Code)(Java Doc)
protected BinaryOperator _or(Code)(Java Doc)
protected BinaryOperator _shiftArithmetic(Code)(Java Doc)
protected BinaryOperator _shiftLeft(Code)(Java Doc)
protected BinaryOperator _shiftRight(Code)(Java Doc)
protected BinaryOperator _subtract(Code)(Java Doc)
protected UnaryOperator _subtract1(Code)(Java Doc)
protected BinaryOperator _xor(Code)(Java Doc)
final protected static Configuration normalConfiguration(Code)(Java Doc)
final static long serialVersionUID(Code)(Java Doc)

Methods inherited from pnuts.lang.Configuration
synchronized Constructor[] _getConstructors(Class cls)(Code)(Java Doc)
synchronized Method[] _getMethods(Class cls, String name)(Code)(Java Doc)
abstract public Object callConstructor(Context context, Class c, Object[] args, Class[] types)(Code)(Java Doc)
abstract public Object callMethod(Context context, Class c, String name, Object args, Class types, Object target)(Code)(Java Doc)
public List createList()(Code)(Java Doc)
public Map createMap(int size, Context context)(Code)(Java Doc)
public String formatObject(Object obj)(Code)(Java Doc)
abstract public Constructor[] getConstructors(Class cls)(Code)(Java Doc)
public static Configuration getDefault()(Code)(Java Doc)
static Configuration getDefault(Properties properties)(Code)(Java Doc)
protected String[] getDefaultImports()(Code)(Java Doc)
abstract public Object getElement(Context context, Object target, Object key)(Code)(Java Doc)
abstract public Object getField(Context context, Object target, String name)(Code)(Java Doc)
protected ClassLoader getInitialClassLoader()(Code)(Java Doc)
static Configuration getInstance(String className)(Code)(Java Doc)
abstract public Method[] getMethods(Class cls)(Code)(Java Doc)
abstract public Object getRange(Context context, Object target, Object idx1, Object idx2)(Code)(Java Doc)
abstract public Object getStaticField(Context context, Class clazz, String name)(Code)(Java Doc)
public Object handleUndefinedSymbol(String symbol, Context context)(Code)(Java Doc)
protected void initializeOperators()(Code)(Java Doc)
protected static Object invokeMethod(Context context, Class c, String name, Object args, Class types, Object target)(Code)(Java Doc)
BigDecimal longToBigDecimal(long lval)(Code)(Java Doc)
public Object makeArray(Object[] parameters, Context context)(Code)(Java Doc)
abstract public void putField(Context context, Object target, String name, Object value)(Code)(Java Doc)
abstract public void putStaticField(Context context, Class clazz, String name, Object value)(Code)(Java Doc)
Object reInvoke(IllegalAccessException t, Method method, Object target, Object[] args) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException(Code)(Java Doc)
void replace(StringBuffer buf, int start, int end, String str)(Code)(Java Doc)
abstract public void setElement(Context context, Object target, Object key, Object value)(Code)(Java Doc)
abstract public Object setRange(Context context, Object target, Object idx1, Object idx2, Object value)(Code)(Java Doc)
abstract public Callable toCallable(Object obj)(Code)(Java Doc)
abstract public Enumeration toEnumeration(Object obj)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.