source: trunk/abcl/src/org/armedbear/lisp/protocol/LispObject.java

Last change on this file was 13336, checked in by Mark Evenson, 13 years ago

Create form of SYSTEM:ZIP that uses a hashtable to map files to entries.

SYSTEM:ZIP PATH HASHTABLE now creates entries in a zipfile at PATH
whose entries are the contents of for each (KEY VALUE) in HASHTABLE
for which KEY refers to an object on the filesystem and VALUE is the
location in the zip archive.

Introduce Java interfaces in org.armedbear.lisp.protocol to start
encapsulating behavior of Java system. By retroactively adding
markers to the object hierarchy rooted on LispObject we gain the
ability to have our JVM code optionally work with interfaces but we
leave the core dispatch functions alone for speed.

File size: 233 bytes
Line 
1package org.armedbear.lisp.protocol;
2
3/** Mark implementation of the LispObject protocol. */
4public interface LispObject {
5    public org.armedbear.lisp.LispObject typeOf();
6    // TODO fill in with other functions as need arises
7}
8
Note: See TracBrowser for help on using the repository browser.