Java Doc for Scope.java in  » Scripting » oscript-2.10.4 » oscript » data » 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 » oscript 2.10.4 » oscript.data 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   oscript.data.Value
      oscript.data.Scope

All known Subclasses:   oscript.data.BasicScope,  oscript.data.ForkScope,
Scope
abstract public class Scope extends Value (Code)
Scope is an internal object use to represent a scope of execution. It is used to implement nested scope, ie. if a lookup in this scope fails, the lookup will procedue in the previous scope, and so on.
author:
   Rob Clark (rob@ti.com)


Field Summary
protected  Scopeprevious
     Previous in object scope chain.

Constructor Summary
protected  Scope(Scope previous)
     Class Constructor.

Method Summary
abstract public  Value__getInstanceMember(int id)
    
public  void__setJavaObject(Object javaObject)
     Set the java-object associated with a script object...
final public  ValuecreateMember(String name, int attr)
     Create a member of this object with the specified value.
final public  ValuecreateMember(Value name, int attr)
     Create a member of this object with the specified value.
abstract public  ValuecreateMember(int id, int attr)
     Create a member of this object with the specified value.
final protected static  StringfindDesc(Scope scope)
    
abstract public  voidfree()
     Indicate that this scope is no longer needed.
public  ValuegetCallee()
     Lookup the "callee" within a scope.
protected  ValuegetInstanceMemberImpl(int id)
    
protected  ValuegetMemberImpl(int id)
    
public  ScopegetPreviousScope()
     Get the previous scope in the scope chain. the parent scope, or null if this is the global-scope (ie.
public  ScopegetSafeCopy()
     In case a scope has any resource allocated from a source which will no long be valid after a stack frame has returned (ie.
public  ValuegetSuper()
     Lookup the "super" within a scope.
public  ValuegetThis()
     Lookup the "this" within a scope.
public  ValuegetThis(Value val)
     Lookup the qualified "this" within a scope.
abstract public  booleanisSafe()
    
final public  ValuelookupInScope(String name)
     Get a member from this scope.
final public  ValuelookupInScope(Value name)
     Get a member from this scope.
abstract public  ValuelookupInScope(int id)
     Get a member from this scope.
abstract public  voidmixin(Value val)
     "mixin" the specified variable into the current scope.

Field Detail
previous
protected Scope previous(Code)
Previous in object scope chain. This is used to lookupInScope, when the member being looked-up doesn't exist in this object (ie scope chain node)




Constructor Detail
Scope
protected Scope(Scope previous)(Code)
Class Constructor. Construct a element in the scope chain. This constructs a "function" element in the scope chain. This is called from the Function class when a function is evaluateded.
Parameters:
  previous - previous in environment scope chain




Method Detail
__getInstanceMember
abstract public Value __getInstanceMember(int id)(Code)



__setJavaObject
public void __setJavaObject(Object javaObject)(Code)
Set the java-object associated with a script object... this is used when a script type subclasses a java type.
Parameters:
  javaObject - the java-object



createMember
final public Value createMember(String name, int attr)(Code)
Create a member of this object with the specified value. This method is provided for convenience.
Parameters:
  name - the name of the member
Parameters:
  attr - the attributes of the object (see Reference.)
See Also:   Reference



createMember
final public Value createMember(Value name, int attr)(Code)
Create a member of this object with the specified value.
Parameters:
  name - the name of the member
Parameters:
  attr - the attributes of the object (see Reference.)
See Also:   Reference



createMember
abstract public Value createMember(int id, int attr)(Code)
Create a member of this object with the specified value.
Parameters:
  id - the id of the symbol that maps to the member
Parameters:
  attr - the attributes of the object (see Reference.)
See Also:   Reference



findDesc
final protected static String findDesc(Scope scope)(Code)



free
abstract public void free()(Code)
Indicate that this scope is no longer needed. This should only be called in cases of scopes allocated from the stack.



getCallee
public Value getCallee()(Code)
Lookup the "callee" within a scope. The "callee" is the first scope chain node that is a function-scope, rather than a regular scope chain node. the "callee" Function within callee scope



getInstanceMemberImpl
protected Value getInstanceMemberImpl(int id)(Code)



getMemberImpl
protected Value getMemberImpl(int id)(Code)



getPreviousScope
public Scope getPreviousScope()(Code)
Get the previous scope in the scope chain. the parent scope, or null if this is the global-scope (ie. topmost scope in the scope chain)



getSafeCopy
public Scope getSafeCopy()(Code)
In case a scope has any resource allocated from a source which will no long be valid after a stack frame has returned (ie. resource allocated from stack), return a copy of the scope that is safe to keep after the stack frame returns.



getSuper
public Value getSuper()(Code)
Lookup the "super" within a scope. Within a function body, "super" is the overriden function (if there is one). the "this" ScriptObject within this scope



getThis
public Value getThis()(Code)
Lookup the "this" within a scope. The "this" is the first scope chain node that is an object, rather than a regular scope chain node. the "this" ScriptObject within this scope



getThis
public Value getThis(Value val)(Code)
Lookup the qualified "this" within a scope. The qualified "this" is the first scope chain node that is an object and an instance of the specified type, rather than a regular scope chain node.
Parameters:
  val - the type that the "this" qualifies the qualified "this" ScriptObject within this scope



isSafe
abstract public boolean isSafe()(Code)



lookupInScope
final public Value lookupInScope(String name) throws PackagedScriptObjectException(Code)
Get a member from this scope. This is used to access local variables and object attributes from methods of the object. If the attribute isn't in this node in the scope chain, then the previous node in the scope chain is checked. This method is provided for convenience.
Parameters:
  name - the name of the member
throws:
  PackagedScriptObjectException - (NoSuchMemberException)



lookupInScope
final public Value lookupInScope(Value name) throws PackagedScriptObjectException(Code)
Get a member from this scope. This is used to access local variables and object attributes from methods of the object. If the attribute isn't in this node in the scope chain, then the previous node in the scope chain is checked.
Parameters:
  name - the name of the member
throws:
  PackagedScriptObjectException - (NoSuchMemberException)



lookupInScope
abstract public Value lookupInScope(int id) throws PackagedScriptObjectException(Code)
Get a member from this scope. This is used to access local variables and object attributes from methods of the object. If the attribute isn't in this node in the scope chain, then the previous node in the scope chain is checked.
Parameters:
  id - the id of the symbol that maps to the member
throws:
  PackagedScriptObjectException - (NoSuchMemberException)



mixin
abstract public void mixin(Value val)(Code)
"mixin" the specified variable into the current scope. When a object is mixed in, all of it's members are mixed in to the current scope. Members created within this scope will take precedence over a member of a mixed in object. The following script code example gives an idea of how this works:
 mixin java.lang.Math;  // defines "min", "max", etc
 var c = min( a, b );
 var d = max( a, b );
 
Mixins can also be used to implement OO composition, so a constructor function can mixin members of another object. (Note that this will not make the resulting object an instanceof this mixed in object's type... this could be made to work at some point in the future for script code, but not for java code, if that was deemed a good thing..)
 function ListAndStuff()
 {
 public function foo() { ... }
 var list = new java.util.LinkedList();
 mixin list;
 }
 var obj = new ListAndStuff();
 obj.foo();
 obj.add(1);
 obj.add("two");
 for( var o : obj )
 writeln("list member: " + o);
 

Parameters:
  val - the value to mixin to this scope



Fields inherited from oscript.data.Value
final public static boolean DEBUG(Code)(Java Doc)
final public static String[] MEMBER_NAMES(Code)(Java Doc)
final public static Value NULL(Code)(Java Doc)
final public static String PARENT_TYPE_NAME(Code)(Java Doc)
final public static BuiltinType TYPE(Code)(Java Doc)
final public static String TYPE_NAME(Code)(Java Doc)
final public static Value UNDEFINED(Code)(Java Doc)

Methods inherited from oscript.data.Value
public static Value _getTypeMember(Value type, Value obj, int id)(Code)(Java Doc)
public static void _populateTypeMemberSet(Value type, java.util.Set s, boolean d)(Code)(Java Doc)
public Value bopBitwiseAnd(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopBitwiseAndR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopBitwiseOr(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopBitwiseOrR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopBitwiseXor(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopBitwiseXorR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopCast(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopCastR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopDivide(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopDivideR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopEquals(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopEqualsR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopGreaterThan(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopGreaterThanOrEquals(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopGreaterThanOrEqualsR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopGreaterThanR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopInstanceOf(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopInstanceOfR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLeftShift(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLeftShiftR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLessThan(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLessThanOrEquals(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLessThanOrEqualsR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLessThanR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLogicalAnd(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLogicalAndR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLogicalOr(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopLogicalOrR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopMinus(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopMinusR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopMultiply(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopMultiplyR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopNotEquals(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopNotEqualsR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopPlus(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopPlusR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopRemainder(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopRemainderR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopSignedRightShift(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopSignedRightShiftR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopUnsignedRightShift(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
public Value bopUnsignedRightShiftR(Value val, PackagedScriptObjectException e) throws PackagedScriptObjectException(Code)(Java Doc)
public Value callAsConstructor(StackFrame sf, MemberTable args) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value callAsConstructor(Value[] args) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value callAsConstructor(StackFrame sf, Value[] args)(Code)(Java Doc)
public Value callAsExtends(StackFrame sf, Scope scope, MemberTable args) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value callAsExtends(Scope scope, MemberTable args) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value callAsExtends(StackFrame sf, Scope scope, Value[] args)(Code)(Java Doc)
public Value callAsFunction(StackFrame sf, MemberTable args) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value callAsFunction(Value[] args) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value callAsFunction(StackFrame sf, Value[] args)(Code)(Java Doc)
public boolean castToBoolean() throws PackagedScriptObjectException(Code)(Java Doc)
public long castToExactNumber() throws PackagedScriptObjectException(Code)(Java Doc)
public double castToInexactNumber() throws PackagedScriptObjectException(Code)(Java Doc)
public Object castToJavaObject() throws PackagedScriptObjectException(Code)(Java Doc)
public String castToString() throws PackagedScriptObjectException(Code)(Java Doc)
public Value elementAt(Value idx) throws PackagedScriptObjectException(Code)(Java Doc)
public Value elementsAt(Value idx1, Value idx2) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value getMember(String name) throws PackagedScriptObjectException(Code)(Java Doc)
public Value getMember(Value name) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value getMember(int id) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value getMember(String name, boolean exception) throws PackagedScriptObjectException(Code)(Java Doc)
final public Value getMember(Value name, boolean exception) throws PackagedScriptObjectException(Code)(Java Doc)
public Value getMember(int id, boolean exception) throws PackagedScriptObjectException(Code)(Java Doc)
public Object getMonitor()(Code)(Java Doc)
public Value getType()(Code)(Java Doc)
abstract protected Value getTypeImpl()(Code)(Java Doc)
protected Value getTypeMember(Value obj, int id)(Code)(Java Doc)
final protected Value getTypeMember(Value obj, Value name)(Code)(Java Doc)
public boolean isA(Value type)(Code)(Java Doc)
public int length() throws PackagedScriptObjectException(Code)(Java Doc)
public java.util.Set memberSet()(Code)(Java Doc)
protected PackagedScriptObjectException noSuchMember(String member)(Code)(Java Doc)
public void opAssign(Value val) throws PackagedScriptObjectException(Code)(Java Doc)
protected void populateMemberSet(java.util.Set s, boolean debugger)(Code)(Java Doc)
protected void populateTypeMemberSet(java.util.Set s, boolean debugger)(Code)(Java Doc)
public void readExternal(java.io.ObjectInput in) throws ClassNotFoundException, java.io.IOException(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public Value unhand()(Code)(Java Doc)
public Value uopBitwiseNot() throws PackagedScriptObjectException(Code)(Java Doc)
public Value uopDecrement() throws PackagedScriptObjectException(Code)(Java Doc)
public Value uopIncrement() throws PackagedScriptObjectException(Code)(Java Doc)
public Value uopLogicalNot() throws PackagedScriptObjectException(Code)(Java Doc)
public Value uopMinus() throws PackagedScriptObjectException(Code)(Java Doc)
public Value uopPlus() throws PackagedScriptObjectException(Code)(Java Doc)
public void writeExternal(java.io.ObjectOutput out) throws java.io.IOException(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.