|
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
|
| Line | |
|---|
| 1 | package 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 |
|
|---|
| 11 | import java.lang.*;
|
|---|
| 12 | import java.lang.reflect.*;
|
|---|
| 13 |
|
|---|
| 14 | public class LispInvocationHandler implements InvocationHandler
|
|---|
| 15 | {
|
|---|
| 16 | public native Object invoke(Object proxy,Method method, Object[] args) throws Throwable;
|
|---|
| 17 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.