Java Doc for IdScriptableObject.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 Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.mozilla.javascript.ScriptableObject
      org.mozilla.javascript.IdScriptableObject

All known Subclasses:   org.mozilla.javascript.xmlimpl.Namespace,  org.mozilla.javascript.ImporterTopLevel,  org.mozilla.javascript.NativeMath,  org.mozilla.javascript.Arguments,  org.mozilla.javascript.NativeIterator,  org.mozilla.javascript.NativeCall,  org.mozilla.javascript.NativeObject,  org.mozilla.javascript.xml.impl.xmlbeans.Namespace,  org.mozilla.javascript.NativeDate,  org.mozilla.javascript.continuations.Continuation,  org.mozilla.javascript.NativeError,  org.mozilla.javascript.xml.XMLObject,  org.mozilla.javascript.regexp.NativeRegExp,  org.mozilla.javascript.xml.impl.xmlbeans.QName,  org.mozilla.javascript.BaseFunction,  org.mozilla.javascript.NativeArray,  org.mozilla.javascript.xmlimpl.QName,  org.mozilla.javascript.NativeString,  org.mozilla.javascript.NativeNumber,  org.mozilla.javascript.NativeGenerator,  org.mozilla.javascript.NativeBoolean,
IdScriptableObject
abstract public class IdScriptableObject extends ScriptableObject implements IdFunctionCall(Code)
Base class for native object implementation that uses IdFunctionObject to export its methods to script via .prototype object. Any descendant should implement at least the following methods: findInstanceIdInfo getInstanceIdName execIdCall methodArity To define non-function properties, the descendant should override getInstanceIdValue setInstanceIdValue to get/set property value and provide its default attributes. To customize initializition of constructor and protype objects, descendant may override scopeInit or fillConstructorProperties methods.



Constructor Summary
public  IdScriptableObject()
    
public  IdScriptableObject(Scriptable scope, Scriptable prototype)
    

Method Summary
final public  voidactivatePrototypeMap(int maxPrototypeId)
    
protected  voidaddIdFunctionProperty(Scriptable obj, Object tag, int id, String name, int arity)
    
final protected  ObjectdefaultGet(String name)
    
final protected  voiddefaultPut(String name, Object value)
    
public  voiddelete(String name)
    
public  ObjectexecIdCall(IdFunctionObject f, Context cx, Scriptable scope, Scriptable thisObj, Object[] args)
     'thisObj' will be null if invoked as constructor, in which case instance of Scriptable should be returned.
final public  IdFunctionObjectexportAsJSClass(int maxPrototypeId, Scriptable scope, boolean sealed)
    
protected  voidfillConstructorProperties(IdFunctionObject ctor)
    
protected  intfindInstanceIdInfo(String name)
     Map name to id of instance property.
protected  intfindPrototypeId(String name)
    
public  Objectget(String name, Scriptable start)
    
public  intgetAttributes(String name)
    
 Object[]getIds(boolean getAll)
    
protected  StringgetInstanceIdName(int id)
     Map id back to property name it defines.
protected  ObjectgetInstanceIdValue(int id)
     Get id value.
protected  intgetMaxInstanceId()
     Get maximum id findInstanceIdInfo can generate.
public  booleanhas(String name, Scriptable start)
    
final public  booleanhasPrototypeMap()
    
protected static  EcmaErrorincompatibleCallError(IdFunctionObject f)
     Utility method to construct type error to indicate incompatible call when converting script thisObj to a particular type is not possible. Possible usage would be to have a private function like realThis:
 private static NativeSomething realThis(Scriptable thisObj,
 IdFunctionObject f)
 {
 if (!(thisObj instanceof NativeSomething))
 throw incompatibleCallError(f);
 return (NativeSomething)thisObj;
 }
 
Note that although such function can be implemented universally via java.lang.Class.isInstance(), it would be much more slower.
Parameters:
  f - function that is attempting to convert 'this'object.
final public  voidinitPrototypeConstructor(IdFunctionObject f)
    
protected  voidinitPrototypeId(int id)
    
final public  voidinitPrototypeMethod(Object tag, int id, String name, int arity)
    
final public  voidinitPrototypeValue(int id, String name, Object value, int attributes)
    
protected static  intinstanceIdInfo(int attributes, int id)
    
public  voidput(String name, Scriptable start, Object value)
    
public  voidsetAttributes(String name, int attributes)
    
protected  voidsetInstanceIdValue(int id, Object value)
     Set or delete id value.


Constructor Detail
IdScriptableObject
public IdScriptableObject()(Code)



IdScriptableObject
public IdScriptableObject(Scriptable scope, Scriptable prototype)(Code)




Method Detail
activatePrototypeMap
final public void activatePrototypeMap(int maxPrototypeId)(Code)



addIdFunctionProperty
protected void addIdFunctionProperty(Scriptable obj, Object tag, int id, String name, int arity)(Code)



defaultGet
final protected Object defaultGet(String name)(Code)



defaultPut
final protected void defaultPut(String name, Object value)(Code)



delete
public void delete(String name)(Code)



execIdCall
public Object execIdCall(IdFunctionObject f, Context cx, Scriptable scope, Scriptable thisObj, Object[] args)(Code)
'thisObj' will be null if invoked as constructor, in which case instance of Scriptable should be returned.



exportAsJSClass
final public IdFunctionObject exportAsJSClass(int maxPrototypeId, Scriptable scope, boolean sealed)(Code)



fillConstructorProperties
protected void fillConstructorProperties(IdFunctionObject ctor)(Code)



findInstanceIdInfo
protected int findInstanceIdInfo(String name)(Code)
Map name to id of instance property. Should return 0 if not found or the result of IdScriptableObject.instanceIdInfo(int,int) .



findPrototypeId
protected int findPrototypeId(String name)(Code)



get
public Object get(String name, Scriptable start)(Code)



getAttributes
public int getAttributes(String name)(Code)



getIds
Object[] getIds(boolean getAll)(Code)



getInstanceIdName
protected String getInstanceIdName(int id)(Code)
Map id back to property name it defines.



getInstanceIdValue
protected Object getInstanceIdValue(int id)(Code)
Get id value. If id value is constant, descendant can call cacheIdValue to store value in the permanent cache. Default implementation creates IdFunctionObject instance for given id and cache its value



getMaxInstanceId
protected int getMaxInstanceId()(Code)
Get maximum id findInstanceIdInfo can generate.



has
public boolean has(String name, Scriptable start)(Code)



hasPrototypeMap
final public boolean hasPrototypeMap()(Code)



incompatibleCallError
protected static EcmaError incompatibleCallError(IdFunctionObject f)(Code)
Utility method to construct type error to indicate incompatible call when converting script thisObj to a particular type is not possible. Possible usage would be to have a private function like realThis:
 private static NativeSomething realThis(Scriptable thisObj,
 IdFunctionObject f)
 {
 if (!(thisObj instanceof NativeSomething))
 throw incompatibleCallError(f);
 return (NativeSomething)thisObj;
 }
 
Note that although such function can be implemented universally via java.lang.Class.isInstance(), it would be much more slower.
Parameters:
  f - function that is attempting to convert 'this'object. Scriptable object suitable for a check by the instanceofoperator.
throws:
  RuntimeException - if no more instanceof target can be found



initPrototypeConstructor
final public void initPrototypeConstructor(IdFunctionObject f)(Code)



initPrototypeId
protected void initPrototypeId(int id)(Code)



initPrototypeMethod
final public void initPrototypeMethod(Object tag, int id, String name, int arity)(Code)



initPrototypeValue
final public void initPrototypeValue(int id, String name, Object value, int attributes)(Code)



instanceIdInfo
protected static int instanceIdInfo(int attributes, int id)(Code)



put
public void put(String name, Scriptable start, Object value)(Code)



setAttributes
public void setAttributes(String name, int attributes)(Code)



setInstanceIdValue
protected void setInstanceIdValue(int id, Object value)(Code)
Set or delete id value. If value == NOT_FOUND , the implementation should make sure that the following getInstanceIdValue return NOT_FOUND.



Fields inherited from org.mozilla.javascript.ScriptableObject
final public static int CONST(Code)(Java Doc)
final public static int DONTENUM(Code)(Java Doc)
final public static int EMPTY(Code)(Java Doc)
final public static int PERMANENT(Code)(Java Doc)
final public static int READONLY(Code)(Java Doc)
final public static int UNINITIALIZED_CONST(Code)(Java Doc)

Methods inherited from org.mozilla.javascript.ScriptableObject
void addLazilyInitializedValue(String name, int index, LazilyLoadedCtor init, int attributes)(Code)(Java Doc)
final public Object associateValue(Object key, Object value)(Code)(Java Doc)
public boolean avoidObjectDetection()(Code)(Java Doc)
static BaseFunction buildClassCtor(Scriptable scope, Class clazz, boolean sealed, boolean mapInheritance) throws IllegalAccessException, InstantiationException, InvocationTargetException(Code)(Java Doc)
public static Object callMethod(Scriptable obj, String methodName, Object[] args)(Code)(Java Doc)
public static Object callMethod(Context cx, Scriptable obj, String methodName, Object[] args)(Code)(Java Doc)
static void checkValidAttributes(int attributes)(Code)(Java Doc)
public static void defineClass(Scriptable scope, Class clazz) throws IllegalAccessException, InstantiationException, InvocationTargetException(Code)(Java Doc)
public static void defineClass(Scriptable scope, Class clazz, boolean sealed) throws IllegalAccessException, InstantiationException, InvocationTargetException(Code)(Java Doc)
public static String defineClass(Scriptable scope, Class clazz, boolean sealed, boolean mapInheritance) throws IllegalAccessException, InstantiationException, InvocationTargetException(Code)(Java Doc)
public void defineConst(String name, Scriptable start)(Code)(Java Doc)
public static void defineConstProperty(Scriptable destination, String propertyName)(Code)(Java Doc)
public void defineFunctionProperties(String[] names, Class clazz, int attributes)(Code)(Java Doc)
public void defineProperty(String propertyName, Object value, int attributes)(Code)(Java Doc)
public static void defineProperty(Scriptable destination, String propertyName, Object value, int attributes)(Code)(Java Doc)
public void defineProperty(String propertyName, Class clazz, int attributes)(Code)(Java Doc)
public void defineProperty(String propertyName, Object delegateTo, Method getter, Method setter, int attributes)(Code)(Java Doc)
public void delete(String name)(Code)(Java Doc)
public void delete(int index)(Code)(Java Doc)
public static boolean deleteProperty(Scriptable obj, String name)(Code)(Java Doc)
public static boolean deleteProperty(Scriptable obj, int index)(Code)(Java Doc)
protected Object equivalentValues(Object value)(Code)(Java Doc)
public Object get(String name, Scriptable start)(Code)(Java Doc)
public Object get(int index, Scriptable start)(Code)(Java Doc)
public Object[] getAllIds()(Code)(Java Doc)
final public Object getAssociatedValue(Object key)(Code)(Java Doc)
final public int getAttributes(String name, Scriptable start)(Code)(Java Doc)
final public int getAttributes(int index, Scriptable start)(Code)(Java Doc)
public int getAttributes(String name)(Code)(Java Doc)
public int getAttributes(int index)(Code)(Java Doc)
abstract public String getClassName()(Code)(Java Doc)
public static Scriptable getClassPrototype(Scriptable scope, String className)(Code)(Java Doc)
public Object getDefaultValue(Class typeHint)(Code)(Java Doc)
public static Object getDefaultValue(Scriptable object, Class typeHint)(Code)(Java Doc)
public static Scriptable getFunctionPrototype(Scriptable scope)(Code)(Java Doc)
public Object getGetterOrSetter(String name, int index, boolean isSetter)(Code)(Java Doc)
public Object[] getIds()(Code)(Java Doc)
Object[] getIds(boolean getAll)(Code)(Java Doc)
public static Scriptable getObjectPrototype(Scriptable scope)(Code)(Java Doc)
public Scriptable getParentScope()(Code)(Java Doc)
public static Object getProperty(Scriptable obj, String name)(Code)(Java Doc)
public static Object getProperty(Scriptable obj, int index)(Code)(Java Doc)
public static Object[] getPropertyIds(Scriptable obj)(Code)(Java Doc)
public Scriptable getPrototype()(Code)(Java Doc)
public static Scriptable getTopLevelScope(Scriptable obj)(Code)(Java Doc)
public static Object getTopScopeValue(Scriptable scope, Object key)(Code)(Java Doc)
public boolean has(String name, Scriptable start)(Code)(Java Doc)
public boolean has(int index, Scriptable start)(Code)(Java Doc)
public boolean hasInstance(Scriptable instance)(Code)(Java Doc)
public static boolean hasProperty(Scriptable obj, String name)(Code)(Java Doc)
public static boolean hasProperty(Scriptable obj, int index)(Code)(Java Doc)
public boolean isConst(String name)(Code)(Java Doc)
protected boolean isGetterOrSetter(String name, int index, boolean setter)(Code)(Java Doc)
final public boolean isSealed()(Code)(Java Doc)
public void put(String name, Scriptable start, Object value)(Code)(Java Doc)
public void put(int index, Scriptable start, Object value)(Code)(Java Doc)
public void putConst(String name, Scriptable start, Object value)(Code)(Java Doc)
public static void putConstProperty(Scriptable obj, String name, Object value)(Code)(Java Doc)
public static void putProperty(Scriptable obj, String name, Object value)(Code)(Java Doc)
public static void putProperty(Scriptable obj, int index, Object value)(Code)(Java Doc)
public static void redefineProperty(Scriptable obj, String name, boolean isConst)(Code)(Java Doc)
public synchronized void sealObject()(Code)(Java Doc)
final public void setAttributes(String name, Scriptable start, int attributes)(Code)(Java Doc)
public void setAttributes(int index, Scriptable start, int attributes)(Code)(Java Doc)
public void setAttributes(String name, int attributes)(Code)(Java Doc)
public void setAttributes(int index, int attributes)(Code)(Java Doc)
public void setGetterOrSetter(String name, int index, Callable getterOrSeter, boolean isSetter)(Code)(Java Doc)
public void setParentScope(Scriptable m)(Code)(Java Doc)
public void setPrototype(Scriptable m)(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.