source: trunk/abcl/src/org/armedbear/lisp/Java.java

Revision Log Mode:


Legend:

Added
Modified
Copied or renamed
Diff Rev Age Author Log Message
(edit) @15761   5 months Mark Evenson Differentiate STORAGE-CONDITION causes A STORAGE-CONDITION may be …
(edit) @15723   10 months Mark Evenson doc: note JAVA:JFIELD and JAVA:JFIELD-RAW only work on public access
(edit) @15569   2 years Mark Evenson Untabify en masse Results of running style.org source blocks on tree
(edit) @15511   3 years Mark Evenson Support variadic arguments with more required parameters (Phil Eaton) …
(edit) @15504   3 years Mark Evenson Allow JAVA:JCLASS to work for non-primitive arrays suffixed with "[]" …
(edit) @15381   4 years Mark Evenson JNEW-ARRAY-FROM-ARRAY constructs more types of java arrays …
(edit) @15353   4 years Mark Evenson JCLASS now works on primitive arrays TODO: viewing the contents of …
(edit) @15306   4 years Mark Evenson Wire up the overhaul of java.nio.Buffer derived types …
(edit) @15246   4 years Mark Evenson Merge pull request <https://github.com/armedbear/abcl/pull/150>
(edit) @15242   4 years Mark Evenson jstatic: check narrowing for explicit method reference The arguments …
(edit) @15234   4 years Mark Evenson Fix calling Java varargs methods Calling varargs with …
(edit) @15233   4 years Mark Evenson Fix calling Java methods with short and byte parameters The FFI will …
(edit) @15067   7 years Mark Evenson First half of User Manual edits prompted by Phillip Marek's review …
(edit) @14918   7 years Mark Evenson Remove generic Throwable handler from JAVA:JFIELD innards This allows …
(edit) @14694   10 years Mark Evenson Convert Lisp truth values to Java equivalents in JCALL/JSTATIC. We …
(edit) @14687   10 years Mark Evenson Fix loading of JNA with recent JCALL improvements. From Olof.
(edit) @14682   10 years Mark Evenson Make JCALL work in more places. A reimplementation of …
(edit) @14466   11 years rschlatte call type_error when possible
(edit) @14465   11 years rschlatte new method program_error, analogous to type_error
(edit) @14326   11 years Mark Evenson Refactor java.beans.* out of Java.java. Enables patches for building …
(edit) @14239   11 years Mark Evenson Fixes #229 so that JCALL works with static member classes. Added …
(edit) @14218   12 years Mark Evenson Always bypass method access checks for JSTATIC. Enables a (to be …
(edit) @13864   12 years rschlatte Remove export of some internal symbols from package java. ... also …
(edit) @13687   13 years Mark Evenson Correct JAVA:MAKE-IMMEDIATE-OBJECT docstring.
(edit) @13461   13 years ehuelsmann Print expected minimum and maximum argument list lengths in …
(edit) @13440   13 years ehuelsmann Rename writeToString() to printObject() since that's what it's being …
(edit) @13365   13 years Mark Evenson Inform user of missing instance method name.
(edit) @13359   13 years Mark Evenson Created +NULL+, +TRUE+, and +FALSE+ constants in the JAVA package. …
(edit) @13328   13 years Mark Evenson Fix JNEW-ARRAY-FROM-ARRAY to create byte[] arrays.
(edit) @13282   13 years Mark Evenson Make JAVA:JRESOLVE-METHOD try harder to resolve a JAVA-OBJECT …
(edit) @13259   13 years astalla Java method resolution algorithm used by JCALL extracted to a method …
(edit) @13221   13 years astalla Fix LispClass?.subclassp(LispObject) used by register-java-exception. …
(edit) @13213   13 years astalla Added Maven POM for deployment. Fixed a primitive class name in Java.java.
(edit) @13113   13 years ehuelsmann Finalize renaming JNULL_REF to JNULL_REF_P.
(edit) @13107   13 years ehuelsmann Rename JNULL_REF to JNULL_REF_P.
(edit) @13103   13 years ehuelsmann Add JNULL_REF to check for a JavaObject? containing a 'null' value.
(edit) @12849   14 years Mark Evenson Narrow LISP-ERROR to STORAGE-CONDITION. Now JRUN-EXCEPTION-PROTECTED …
(edit) @12826   14 years vvoutilainen DocString? annotation support, for generating DOCUMENTATION, and later …
(edit) @12814   14 years astalla Fix for r12809: bind *print-readably* to NIL when printing conditions …
(edit) @12813   14 years astalla Java interop, small improvement: the first argument to jnew can now …
(edit) @12715   14 years astalla Support for custom defclass options for user-defined metaclasses. …
(edit) @12663   14 years Mark Evenson Adjust JCLASS docstring to reflect optional classloader argument.
(edit) @12662   14 years astalla JCLASS now supports an optional CLASS-LOADER argument.
(edit) @12561   14 years Mark Evenson Convert to stack-friendly primitives; add missing grovel tags.
(edit) @12513   14 years ehuelsmann Remove 'private' keyword to eliminate the Java requirement for the …
(edit) @12431   14 years Mark Evenson Replace FastStringBuffer? with java.lang.StringBuilder?. Phil Hudson …
(edit) @12351   14 years astalla Fixed regression with JavaObject?.javaInstance(Class) and primitive types.
(edit) @12345   14 years astalla Use of the "intended class" of an object before the actual class to …
(edit) @12314   14 years ehuelsmann Upon OutOfMemoryError? or StackOverflowError?, unwind the stack to the …
(edit) @12304   14 years astalla Refinement: better error message when an applicable constructor cannot …
(edit) @12303   14 years astalla Extended the new smart behavior of jcall to jnew: (jnew class-name …
(edit) @12302   14 years astalla Applied Yoshinori Tahara's patch that allows jcall to invoke the …
(edit) @12299   14 years ehuelsmann Annotate some remaining "catch (Throwable" occurrences. While at it: …
(edit) @12298   14 years ehuelsmann Full source scan of "catch (Throwable"; remove lots of instances, or …
(edit) @12290   14 years vvoutilainen Remove LispTrampolinesFile? and all references to it.
(edit) @12288   14 years vvoutilainen Don't extend Lisp in LispObject, static import Lisp wherever …
(edit) @12255   15 years ehuelsmann Rename ConditionThrowable? to ControlTransfer? and remove try/catch …
(edit) @12254   15 years ehuelsmann Remove 'throws ConditionThrowable?' method annotations: it's an …
(edit) @12253   15 years ehuelsmann Make ConditionThrowable? abstract: it's the parent of non-local …
(edit) @12252   15 years ehuelsmann Annotate dubious uses of ConditionThrowable? with FIXME's.
(edit) @12111   15 years ehuelsmann Eliminate all unchecked warnings, while also removing generic …
(edit) @12022   15 years astalla Better type conversion Lisp <-> Java for property getters/setters.
(edit) @11834   15 years astalla Relaxed type checking when invoking Java methods from Lisp, as …
(edit) @11762   15 years ehuelsmann Fix JCLASS null return value; signal a lisp error instead. Found by: …
(edit) @11754   15 years vvoutilainen Convert using ClassCastException? to checking instanceof. Performance …
(edit) @11711   15 years ehuelsmann Switch our internals over to the new variadic list() function.
(edit) @11698   15 years astalla reverted wrong commit.
(edit) @11697   15 years astalla Serialization support for some lisp objects.
(edit) @11693   15 years ehuelsmann Make boxing/unboxing more efficient: Instead of "calling the boxing …
(edit) @11692   15 years ehuelsmann Add 2 missing @Override annotations.
(edit) @11691   15 years ehuelsmann Don't box values which have well-defined meanings within the Lisp …
(edit) @11590   15 years astalla Merged the scripting branch, providing JSR-223 support and other new …
(edit) @11488   15 years ehuelsmann Add @Override annotations. Patch by: Douglas Miles
(copy) @11457   15 years ehuelsmann Create separate project directories for ABCL and J.
copied from trunk/j/src/org/armedbear/lisp/Java.java:
(edit) @11391   15 years vvoutilainen ABCL license is GPL + Classpath exception. This was intended by Peter …
Note: See TracRevisionLog for help on using the revision log.