source: trunk/abcl/src/org/armedbear/lisp/protocol/Inspectable.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: 188 bytes
Line 
1package org.armedbear.lisp.protocol;
2
3/** Object implements a protocol for dynamic introspection. */
4public interface Inspectable {
5    public org.armedbear.lisp.LispObject getParts();
6}
7
Note: See TracBrowser for help on using the repository browser.