Changeset 13608
- Timestamp:
- 09/30/11 14:18:04 (12 years ago)
- Location:
- trunk/abcl/src/org/armedbear/lisp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/JavaObject.java
r13440 r13608 660 660 }; 661 661 662 // ### +null+ 662 663 public final static Symbol NULL 663 664 = Lisp.exportConstant("+NULL+", PACKAGE_JAVA, new JavaObject(null)); 665 static { 666 String doc = "The JVM null object reference."; 667 NULL.setDocumentation(Symbol.VARIABLE, new SimpleString(doc)); 668 } 669 // ### +true+ 664 670 public final static Symbol TRUE 665 671 = Lisp.exportConstant("+TRUE+", PACKAGE_JAVA, new JavaObject(true)); 672 static { 673 String doc = "The JVM primitive value for boolean true."; 674 TRUE.setDocumentation(Symbol.VARIABLE, new SimpleString(doc)); 675 } 676 // ### +false+ 666 677 public final static Symbol FALSE 667 678 = Lisp.exportConstant("+FALSE+", PACKAGE_JAVA, new JavaObject(false)); 679 static { 680 String doc = "The JVM primitive value for boolean false."; 681 FALSE.setDocumentation(Symbol.VARIABLE, new SimpleString(doc)); 682 } 683 668 684 } -
trunk/abcl/src/org/armedbear/lisp/java.lisp
r13393 r13608 44 44 (add-url-to-classpath url))) 45 45 46 (defgeneric add-to-classpath (jar-or-jars &optional classloader)) 46 (defgeneric add-to-classpath (jar-or-jars &optional classloader) 47 (:documentation "Add JAR-OR-JARS to the JVM classpath optionally specifying the CLASSLOADER to add. 48 49 JAR-OR-JARS is either a pathname designating a jar archive or the root 50 directory to search for classes or a list of such values.")) 47 51 48 52 (defmethod add-to-classpath (jar-or-jars &optional (classloader (get-current-classloader)))
Note: See TracChangeset
for help on using the changeset viewer.