|
What this is
Other links
The source code/***************************************************************************** * * * This file is part of the BeanShell Java Scripting distribution. * * Documentation and updates may be found at http://www.beanshell.org/ * * * * Sun Public License Notice: * * * * The contents of this file are subject to the Sun Public License Version * * 1.0 (the "License"); you may not use this file except in compliance with * * the License. A copy of the License is available at http://www.sun.com * * * * The Original Code is BeanShell. The Initial Developer of the Original * * Code is Pat Niemeyer. Portions created by Pat Niemeyer are Copyright * * (C) 2000. All Rights Reserved. * * * * GNU Public License Notice: * * * * Alternatively, the contents of this file may be used under the terms of * * the GNU Lesser General Public License (the "LGPL"), in which case the * * provisions of LGPL are applicable instead of those above. If you wish to * * allow use of your version of this file only under the terms of the LGPL * * and not to allow others to use your version of this file under the SPL, * * indicate your decision by deleting the provisions above and replace * * them with the notice and other provisions required by the LGPL. If you * * do not delete the provisions above, a recipient may use your version of * * this file under either the SPL or the LGPL. * * * * Patrick Niemeyer (pat@pat.net) * * Author of Learning Java, O'Reilly & Associates * * http://www.pat.net/~pat/ * * * *****************************************************************************/ package bsh; import java.io.IOException; /** 'This' is the type of bsh scripted objects. A 'This' object is a bsh scripted object context. It holds a namespace reference and implements event listeners and various other interfaces. This holds a reference to the declaring interpreter for callbacks from outside of bsh. */ public class This implements java.io.Serializable, Runnable { /** The namespace that this This reference wraps. */ NameSpace namespace; /** This is the interpreter running when the This ref was created. It's used as a default interpreter for callback through the This where there is no current interpreter instance e.g. interface proxy or event call backs from outside of bsh. */ transient Interpreter declaringInterpreter; /** getThis() is a factory for bsh.This type references. The capabilities of ".this" references in bsh are version dependent up until jdk1.3. The version dependence was to support different default interface implementations. i.e. different sets of listener interfaces which scripted objects were capable of implementing. In jdk1.3 the reflection proxy mechanism was introduced which allowed us to implement arbitrary interfaces. This is fantastic. A This object is a thin layer over a namespace, comprising a bsh object context. We create it here only if needed for the namespace. Note: this method could be considered slow because of the way it dynamically factories objects. However I've also done tests where I hard-code the factory to return JThis and see no change in the rough test suite time. This references are also cached in NameSpace. */ static This getThis( NameSpace namespace, Interpreter declaringInterpreter ) { try { Class c; if ( Capabilities.canGenerateInterfaces() ) c = Class.forName( "bsh.XThis" ); else if ( Capabilities.haveSwing() ) c = Class.forName( "bsh.JThis" ); else return new This( namespace, declaringInterpreter ); return (This)Reflect.constructObject( c, new Object [] { namespace, declaringInterpreter } ); } catch ( Exception e ) { throw new InterpreterError("internal error 1 in This: "+e); } } /** Get a version of this scripted object implementing the specified interface. */ /* If this type of This implements it directly return this, else try complain that we don't have the proxy mechanism. */ public Object getInterface( Class clas ) throws UtilEvalError { if ( clas.isInstance( this ) ) return this; else throw new UtilEvalError( "Dynamic proxy mechanism not available. " + "Cannot construct interface type: "+clas ); } /** Get a version of this scripted object implementing the specified interfaces. */ public Object getInterface( Class [] ca ) throws UtilEvalError { for(int i=0; i |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.