Source Code Cross Referenced for Migrate.java in  » Scripting » jacl » itcl » 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 » jacl » itcl.lang 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * ------------------------------------------------------------------------
003:         *      PACKAGE:  [incr Tcl]
004:         *  DESCRIPTION:  Object-Oriented Extensions to Tcl
005:         *
006:         *  This file contains procedures that belong in the Tcl/Tk core.
007:         *  Hopefully, they'll migrate there soon.
008:         *
009:         * ========================================================================
010:         *  AUTHOR:  Michael J. McLennan
011:         *           Bell Labs Innovations for Lucent Technologies
012:         *           mmclennan@lucent.com
013:         *           http://www.tcltk.com/itcl
014:         *
015:         *     RCS:  $Id: Migrate.java,v 1.1 2005/09/11 20:56:57 mdejong Exp $
016:         * ========================================================================
017:         *           Copyright (c) 1993-1998  Lucent Technologies, Inc.
018:         * ------------------------------------------------------------------------
019:         * See the file "license.itcl" for information on usage and redistribution
020:         * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
021:         */
022:
023:        package itcl.lang;
024:
025:        import tcl.lang.*;
026:
027:        class Migrate {
028:
029:            /*
030:             *----------------------------------------------------------------------
031:             *
032:             * _Tcl_GetCallFrame -> Migrate.GetCallFrame
033:             *
034:             *	Checks the call stack and returns the call frame some number
035:             *	of levels up.  It is often useful to know the invocation
036:             *	context for a command.
037:             *
038:             * Results:
039:             *	Returns a token for the call frame 0 or more levels up in
040:             *	the call stack.
041:             *
042:             * Side effects:
043:             *	None.
044:             *
045:             *----------------------------------------------------------------------
046:             */
047:
048:            static CallFrame GetCallFrame(Interp interp, // interpreter being queried
049:                    int level) // number of levels up in the call stack (>= 0)
050:            {
051:                if (level < 0) {
052:                    Util
053:                            .Assert(false,
054:                                    "Migrate.GetCallFrame called with bad number of levels");
055:                }
056:
057:                return ItclAccess.getCallFrame(interp, level);
058:            }
059:
060:            /*
061:             *----------------------------------------------------------------------
062:             *
063:             * _Tcl_ActivateCallFrame -> Migrate.ActivateCallFrame
064:             *
065:             *	Makes an existing call frame the current frame on the
066:             *	call stack.  Usually called in conjunction with
067:             *	GetCallFrame to simulate the effect of an "uplevel"
068:             *	command.
069:             *
070:             *	Note that this procedure is different from Tcl_PushCallFrame,
071:             *	which adds a new call frame to the call stack.  This procedure
072:             *	assumes that the call frame is already initialized, and it
073:             *	merely activates it on the call stack.
074:             *
075:             * Results:
076:             *	Returns a token for the call frame that was in effect before
077:             *	activating the new context.  That call frame can be restored
078:             *	by calling _Tcl_ActivateCallFrame again.
079:             *
080:             * Side effects:
081:             *	None.
082:             *
083:             *----------------------------------------------------------------------
084:             */
085:
086:            static CallFrame ActivateCallFrame(Interp interp, // interpreter being queried
087:                    CallFrame frame) // call frame to be activated
088:            {
089:                return ItclAccess.activateCallFrame(interp, frame);
090:            }
091:
092:            /*
093:             *----------------------------------------------------------------------
094:             *
095:             * _TclNewVar -> Migrate.NewVar
096:             *
097:             *      Create a new variable that will eventually be
098:             *      entered into a hashtable.
099:             *
100:             * Results:
101:             *      The return value is a reference to the new variable structure. It is
102:             *      marked as a scalar variable (and not a link or array variable). Its
103:             *      value initially is null. The variable is not part of any hash table
104:             *      yet. Since it will be in a hashtable and not in a call frame, its
105:             *      name field is set null. It is initially marked as undefined.
106:             *
107:             * Side effects:
108:             *      Storage gets allocated.
109:             *
110:             *----------------------------------------------------------------------
111:             */
112:
113:            static Var NewVar() {
114:                return ItclAccess.newVar();
115:            }
116:
117:        } // end class Migrate
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.