source: trunk/source/examples/jfli/com/richhickey/jfli/LispInvocationHandler.java

Last change on this file was 11435, checked in by Gary Byers, 16 years ago

Rich Hickey's 'jfli' (Lisp<->Java) bridge, as of jfli091104.zip.
The file 'jni.lisp' is LispWorks-specific FFI code; there'll need
to be something CCL-specific that exports the same interface.

Text files in the .zip were CRLF-terminated; hopefully, svn will
fix that ...

File size: 717 bytes
RevLine 
[11435]1package com.richhickey.jfli;
2
3// Copyright (c) Rich Hickey. All rights reserved.
4// The use and distribution terms for this software are covered by the
5// Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
6// which can be found in the file CPL.TXT at the root of this distribution.
7// By using this software in any fashion, you are agreeing to be bound by
8// the terms of this license.
9// You must not remove this notice, or any other, from this software.
10
11import java.lang.*;
12import java.lang.reflect.*;
13
14public class LispInvocationHandler implements InvocationHandler
15{
16public native Object invoke(Object proxy,Method method, Object[] args) throws Throwable;
17}
Note: See TracBrowser for help on using the repository browser.