Changeset 13657
- Timestamp:
- 10/21/11 21:07:31 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/doc/manual/abcl.tex
r13636 r13657 297 297 The constructor can't be passed to \code{JAVA:JCALL}, but instead should 298 298 be passed as an argument to \code{JAVA:JNEW}. 299 300 \subsubsection{Accessing Java object fields} 301 302 Fields in Java objects can be accessed using the getter and setter functions 303 \code{JAVA:GETFIELD} and \code{JAVA:PUTFIELD}. This applies to values stored in object 304 instances. If you want to access static fields: see the next section. 305 306 Like \code{JAVA:JCALL} and friends, values returned from these accessors carry 307 an intended class around and values which can be converted to Lisp values will 308 be converted. 309 310 \subsubsection{Accessing Java static fields} 311 312 Static fields in Java objects (class fields) can be accessed using the getter 313 and setter functions \code{JAVA:GETSTATIC} and \code{JAVA:PUTSTATIC}. Values 314 stored in object instance fields can be accessed as described in the previous 315 section. 316 317 Like \code{JAVA:JCALL} and friends, values returned from these accessors carry 318 an intended class around and values which can be converted to Lisp values will 319 be converted. 320 299 321 300 322 \section{Lisp from Java} … … 942 964 Common Lisp implementation. 943 965 944 In 200 6, the implementation was transferred to the current966 In 2008, the implementation was transferred to the current 945 967 maintainers, who have strived to improve its usability as a 946 968 contemporary Common Lisp implementation.
Note: See TracChangeset
for help on using the changeset viewer.