~statik/etherpad/trunk

« back to all changes in this revision

Viewing changes to infrastructure/rhino1_7R1/src/org/mozilla/javascript/RefCallable.java

  • Committer: Elliot Murphy
  • Date: 2009-12-19 01:40:46 UTC
  • Revision ID: elliot@elliotmurphy.com-20091219014046-7icbb6oxc29ccdn3
Copied over from zero-history mercurial repo.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 
2
 *
 
3
 * ***** BEGIN LICENSE BLOCK *****
 
4
 * Version: MPL 1.1/GPL 2.0
 
5
 *
 
6
 * The contents of this file are subject to the Mozilla Public License Version
 
7
 * 1.1 (the "License"); you may not use this file except in compliance with
 
8
 * the License. You may obtain a copy of the License at
 
9
 * 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-1999
 
22
 * the Initial Developer. All Rights Reserved.
 
23
 *
 
24
 * Contributor(s):
 
25
 *   Igor Bukanov, igor@mir2.org
 
26
 *
 
27
 * Alternatively, the contents of this file may be used under the terms of
 
28
 * the GNU General Public License Version 2 or later (the "GPL"), in which
 
29
 * case the provisions of the GPL are applicable instead of those above. If
 
30
 * you wish to allow use of your version of this file only under the terms of
 
31
 * the GPL and not to allow others to use your version of this file under the
 
32
 * MPL, indicate your decision by deleting the provisions above and replacing
 
33
 * them with the notice and other provisions required by the GPL. If you do
 
34
 * not delete the provisions above, a recipient may use your version of this
 
35
 * file under either the MPL or the GPL.
 
36
 *
 
37
 * ***** END LICENSE BLOCK ***** */
 
38
 
 
39
package org.mozilla.javascript;
 
40
 
 
41
/**
 
42
 * Object that can allows assignments to the result of function calls.
 
43
 */
 
44
public interface RefCallable extends Callable
 
45
{
 
46
    /**
 
47
     * Perform function call in reference context.
 
48
     * The args array reference should not be stored in any object that is
 
49
     * can be GC-reachable after this method returns. If this is necessary,
 
50
     * for example, to implement {@link Ref} methods, then store args.clone(),
 
51
     * not args array itself.
 
52
     *
 
53
     * @param cx the current Context for this thread
 
54
     * @param thisObj the JavaScript <code>this</code> object
 
55
     * @param args the array of arguments
 
56
     */
 
57
    public Ref refCall(Context cx, Scriptable thisObj, Object[] args);
 
58
}
 
59