Java Doc for Configuration.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

All known Subclasses:   pnuts.lang.JavaBeansConfiguration,  pnuts.ext.ConfigurationAdapter,
Configuration
abstract public class Configuration implements Serializable(Code)
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.


Field Summary
protected  BinaryOperator_add
    
protected  UnaryOperator_add1
    
protected  BinaryOperator_and
    
protected  BinaryOperator_divide
    
protected  BooleanOperator_eq
    
protected  BooleanOperator_ge
    
protected  BooleanOperator_gt
    
 String[]_imports
    
protected  BooleanOperator_le
    
protected  BooleanOperator_lt
    
protected  BinaryOperator_mod
    
protected  BinaryOperator_multiply
    
protected  UnaryOperator_negate
    
protected  UnaryOperator_not
    
protected  BinaryOperator_or
    
protected  BinaryOperator_shiftArithmetic
    
protected  BinaryOperator_shiftLeft
    
protected  BinaryOperator_shiftRight
    
protected  BinaryOperator_subtract
    
protected  UnaryOperator_subtract1
    
protected  BinaryOperator_xor
    
final protected static  ConfigurationnormalConfiguration
     The normal configuration, which is the fall-back of the default configuration.
final static  longserialVersionUID
    

Constructor Summary
public  Configuration()
    

Method Summary
synchronized  Constructor[]_getConstructors(Class cls)
    
synchronized  Method[]_getMethods(Class cls, String name)
    
abstract public  ObjectcallConstructor(Context context, Class c, Object[] args, Class[] types)
    
abstract public  ObjectcallMethod(Context context, Class c, String name, Object args, Class types, Object target)
    
public  ListcreateList()
    
public  MapcreateMap(int size, Context context)
     Create a new Map object that corresponds to {key=>value} expression.
public  StringformatObject(Object obj)
     Defines how objects are printed in the interactive shell.
abstract public  Constructor[]getConstructors(Class cls)
     Get all public constructors of the specified class.
public static  ConfigurationgetDefault()
     Returns the default Configuration object.
static  ConfigurationgetDefault(Properties properties)
    
protected  String[]getDefaultImports()
    
abstract public  ObjectgetElement(Context context, Object target, Object key)
    
abstract public  ObjectgetField(Context context, Object target, String name)
     Gets a field value of the target object.
protected  ClassLoadergetInitialClassLoader()
    
static  ConfigurationgetInstance(String className)
    
abstract public  Method[]getMethods(Class cls)
     Get all public methods of the specified class.
abstract public  ObjectgetRange(Context context, Object target, Object idx1, Object idx2)
     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.
abstract public  ObjectgetStaticField(Context context, Class clazz, String name)
     Get the value of a static field.
public  ObjecthandleUndefinedSymbol(String symbol, Context context)
     Handle an "not.defined" error This method can be redefined by a subclass so that a special value (e.g.
protected  voidinitializeOperators()
    
protected static  ObjectinvokeMethod(Context context, Class c, String name, Object args, Class types, Object target)
    
 BigDecimallongToBigDecimal(long lval)
    
public  ObjectmakeArray(Object[] parameters, Context context)
     Return the value of an array expression.
abstract public  voidputField(Context context, Object target, String name, Object value)
     Sets a field value of the specified object.
abstract 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 start, int end, String str)
    
abstract public  voidsetElement(Context context, Object target, Object key, Object value)
    
abstract public  ObjectsetRange(Context context, Object target, Object idx1, Object idx2, Object value)
     Defines the semantices of an expression like:
 target[idx1..idx2] = value
 

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.
abstract public  CallabletoCallable(Object obj)
     Convert an object to Callable.
abstract public  EnumerationtoEnumeration(Object obj)
     Convert an object to Enumeration.

Field Detail
_add
protected BinaryOperator _add(Code)
object1 + object2



_add1
protected UnaryOperator _add1(Code)
object++, ++object



_and
protected BinaryOperator _and(Code)
object1 & object2



_divide
protected BinaryOperator _divide(Code)
object1 / object2



_eq
protected BooleanOperator _eq(Code)
object1 == object2



_ge
protected BooleanOperator _ge(Code)
object1 >= object2



_gt
protected BooleanOperator _gt(Code)
object1 > object2



_imports
String[] _imports(Code)
Default imports



_le
protected BooleanOperator _le(Code)
object1 <= object2



_lt
protected BooleanOperator _lt(Code)
object1 < object2



_mod
protected BinaryOperator _mod(Code)
object1 % object2



_multiply
protected BinaryOperator _multiply(Code)
object1 * object2



_negate
protected UnaryOperator _negate(Code)
- object



_not
protected UnaryOperator _not(Code)
~object



_or
protected BinaryOperator _or(Code)
object1 | object2



_shiftArithmetic
protected BinaryOperator _shiftArithmetic(Code)
object1 >>> object2



_shiftLeft
protected BinaryOperator _shiftLeft(Code)
object1 < < object2



_shiftRight
protected BinaryOperator _shiftRight(Code)
object1 >> object2



_subtract
protected BinaryOperator _subtract(Code)
object1 - object2



_subtract1
protected UnaryOperator _subtract1(Code)
object--, object--



_xor
protected BinaryOperator _xor(Code)
object1 ^ object2



normalConfiguration
final protected static Configuration normalConfiguration(Code)
The normal configuration, which is the fall-back of the default configuration.



serialVersionUID
final static long serialVersionUID(Code)




Constructor Detail
Configuration
public Configuration()(Code)




Method Detail
_getConstructors
synchronized Constructor[] _getConstructors(Class cls)(Code)



_getMethods
synchronized Method[] _getMethods(Class cls, String name)(Code)



callConstructor
abstract public Object callConstructor(Context context, Class c, Object[] args, Class[] types)(Code)
Calls a constructor
Parameters:
  context - the context
Parameters:
  c - class of the constructor
Parameters:
  args - the arguments
Parameters:
  types - type information of each arguments the result



callMethod
abstract 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



createList
public List createList()(Code)



createMap
public Map createMap(int size, Context context)(Code)
Create a new Map object that corresponds to {key=>value} expression.
Parameters:
  size - the map size a new Map object



formatObject
public String formatObject(Object obj)(Code)
Defines how objects are printed in the interactive shell.
Parameters:
  obj - the target object to print the string representation of the target object



getConstructors
abstract public Constructor[] getConstructors(Class cls)(Code)
Get all public constructors of the specified class.
Parameters:
  cls - the class an array of Constructor objects



getDefault
public static Configuration getDefault()(Code)
Returns the default Configuration object. the current default configuration



getDefault
static Configuration getDefault(Properties properties)(Code)



getDefaultImports
protected String[] getDefaultImports()(Code)
Subclasses may redefines default imports an array of imported classes, package, or statics



getElement
abstract public Object getElement(Context context, Object target, Object key)(Code)
Gets an array element
Parameters:
  context - the context
Parameters:
  target - the target object (an array)
Parameters:
  key - the key or the index of the element the value of the element



getField
abstract 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



getInitialClassLoader
protected ClassLoader getInitialClassLoader()(Code)



getInstance
static Configuration getInstance(String className)(Code)



getMethods
abstract public Method[] getMethods(Class cls)(Code)
Get all public methods of the specified class.
Parameters:
  cls - the class an array of Method objects



getRange
abstract 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. null in idx2 means open-ended. the result



getStaticField
abstract 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



handleUndefinedSymbol
public Object handleUndefinedSymbol(String symbol, Context context)(Code)
Handle an "not.defined" error This method can be redefined by a subclass so that a special value (e.g. null) is returned when undefined symbol is referenced.
Parameters:
  symbol - the undefined symbol
Parameters:
  context - the context in which the symbol is referenced the value to be returned



initializeOperators
protected void initializeOperators()(Code)



invokeMethod
protected static Object invokeMethod(Context context, Class c, String name, Object args, Class types, Object target)(Code)



longToBigDecimal
BigDecimal longToBigDecimal(long lval)(Code)



makeArray
public Object makeArray(Object[] parameters, Context context)(Code)
Return the value of an array expression. e.g. [a,b,c] {1,2,3} This method can be redefined by a subclass so that array expression returns different type of object, such as java.util.List.
Parameters:
  parameters - the elements in the array expression the value of the array expression



putField
abstract 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
abstract 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, IllegalArgumentException, InvocationTargetException(Code)



replace
void replace(StringBuffer buf, int start, int end, String str)(Code)



setElement
abstract public void setElement(Context context, Object target, Object key, Object value)(Code)
Sets an element
Parameters:
  context - the context
Parameters:
  target - the target object (an array)
Parameters:
  key - the key or the index of the element
Parameters:
  value - the new value of the element



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

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. null in idx2 means open-ended.
Parameters:
  value - the new value of the indexed element the result



toCallable
abstract public Callable toCallable(Object obj)(Code)
Convert an object to Callable. This method is used by call expression, e.g. obj(arg1, ...). Subclasses can override this method to register custom callable objects.



toEnumeration
abstract 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 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.