01: /* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
02: *
03: * ***** BEGIN LICENSE BLOCK *****
04: * Version: MPL 1.1/GPL 2.0
05: *
06: * The contents of this file are subject to the Mozilla Public License Version
07: * 1.1 (the "License"); you may not use this file except in compliance with
08: * the License. You may obtain a copy of the License at
09: * http://www.mozilla.org/MPL/
10: *
11: * Software distributed under the License is distributed on an "AS IS" basis,
12: * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13: * for the specific language governing rights and limitations under the
14: * License.
15: *
16: * The Original Code is Rhino code, released
17: * May 6, 1999.
18: *
19: * The Initial Developer of the Original Code is
20: * Netscape Communications Corporation.
21: * Portions created by the Initial Developer are Copyright (C) 1997-2000
22: * the Initial Developer. All Rights Reserved.
23: *
24: * Contributor(s):
25: *
26: * Alternatively, the contents of this file may be used under the terms of
27: * the GNU General Public License Version 2 or later (the "GPL"), in which
28: * case the provisions of the GPL are applicable instead of those above. If
29: * you wish to allow use of your version of this file only under the terms of
30: * the GPL and not to allow others to use your version of this file under the
31: * MPL, indicate your decision by deleting the provisions above and replacing
32: * them with the notice and other provisions required by the GPL. If you do
33: * not delete the provisions above, a recipient may use your version of this
34: * file under either the MPL or the GPL.
35: *
36: * ***** END LICENSE BLOCK ***** */
37:
38: package org.mozilla.javascript.jdk11;
39:
40: import java.lang.reflect.Member;
41: import java.util.Hashtable;
42:
43: import org.mozilla.javascript.*;
44:
45: public class VMBridge_jdk11 extends VMBridge {
46: private Hashtable threadsWithContext = new Hashtable();
47:
48: protected Object getThreadContextHelper() {
49: return Thread.currentThread();
50: }
51:
52: protected Context getContext(Object contextHelper) {
53: Thread t = (Thread) contextHelper;
54: return (Context) threadsWithContext.get(t);
55: }
56:
57: protected void setContext(Object contextHelper, Context cx) {
58: Thread t = (Thread) contextHelper;
59: if (cx == null) {
60: // Allow to garbage collect thread reference
61: threadsWithContext.remove(t);
62: } else {
63: threadsWithContext.put(t, cx);
64: }
65: }
66:
67: protected ClassLoader getCurrentThreadClassLoader() {
68: return null;
69: }
70:
71: protected boolean tryToMakeAccessible(Object accessibleObject) {
72: return false;
73: }
74:
75: protected boolean isVarArgs(Member member) {
76: return false;
77: }
78: }
|