Changeset 13801
- Timestamp:
- 01/25/12 10:03:56 (11 years ago)
- Location:
- trunk/abcl/doc/manual
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/doc/manual/README.markdown
r13694 r13801 4 4 With a suitable TexLive installed, to build simply issue: 5 5 6 cmd$ pdflatex abcl.tex && makeindex abcl&& pdflatex abcl.tex6 cmd$ pdflatex abcl.tex && bibtex abcl && makeindex abcl && pdflatex abcl.tex && pdflatex abcl.tex -
trunk/abcl/doc/manual/abcl.tex
r13798 r13801 229 229 \begin{itemize} 230 230 \item Call a specific method reference (which was previously acquired) 231 \item Dynamic dispatch using the method name and 232 the call-specific arguments provided by finding the233 \ref{section:Parameter matching for FFI dynamic dispatch}{best match}.231 \item Dynamic dispatch using the method name and the call-specific 232 arguments provided by finding the best match (see 233 Section~\ref{sec:param-matching-for-ffi}). 234 234 \end{itemize} 235 235 … … 353 353 354 354 \subsubsection{Parameter matching for FFI dynamic dispatch} 355 \label{sec:param-matching-for-ffi} 355 356 356 357 The algorithm used to resolve the best matching method given the name … … 789 790 reference weakly held by the garbage collector and others. 790 791 791 See \ ref{Rhodes2007} for a generic function interface to the native792 See \cite{RHODES2007} for a generic function interface to the native 792 793 JVM contract for \code{java.util.List}. 793 794 … … 815 816 ``https'' implementations but additional protocol handlers may be 816 817 installed at runtime by having JVM symbols present in the 817 sun.net.protocol.dyn mamic pacakge. See Java2007 \cite{Java2007} for more818 sun.net.protocol.dynamic pacakge. See \cite{maso2000} for more 818 819 details. 819 820 … … 851 852 852 853 The implementation of URL-PATHNAME allows the ABCL user to laod dynamically 853 code from the network. For example, for Quicklisp (\cite{ Xach2011}):854 code from the network. For example, for Quicklisp (\cite{quicklisp}): 854 855 855 856 \begin{listing-lisp} … … 859 860 will load and execute the Quicklisp setup code. 860 861 861 See \ref{_:XACH2011} on page \pageref{_:XACH2011}.862 %See \ref{_:quicklisp} on page \pageref{_:quicklisp}. 862 863 863 864 \subsubsection{Implementation} … … 890 891 \end{listing-lisp} 891 892 892 if only the extensible sequences API as specified in \ ref{RHODES2007} is893 if only the extensible sequences API as specified in \cite{RHODES2007} is 893 894 required. 894 895 … … 1068 1069 syntax available to the Java programmer may be said to suck. To 1069 1070 alleviate this situation, we introduce the 1070 \code{SHARPSIGN-DOUBLE-QUOTE} ( ``\\#"Q'')macro, the first of perhaps1071 \code{SHARPSIGN-DOUBLE-QUOTE} (\code{\#"}) reader macro, the first of perhaps 1071 1072 many exper 1072 1073 1073 1074 \subsection{JSS usage} 1074 1075 1075 \label{section:jss}1076 1077 1076 Example: 1078 1077 … … 1092 1091 1093 1092 The asdf-install contrib provides an implementation of ASDF-INSTALL. 1094 Superseded by Quicklisp (see Xach2011 \cite{ Xach2011}).1093 Superseded by Quicklisp (see Xach2011 \cite{quicklisp}). 1095 1094 1096 1095 The \code{require} of the \code{asdf-install} symbol has the side … … 1122 1121 on January 10, 2012. 1123 1122 1124 1125 \begin{thebibliography}{9} 1126 1127 \label{_:1} 1128 \bibitem{Java2000} 1129 ``A New Era for Java Protocol Handlers.'' 1130 \url{http://java.sun.com/developer/onlineTraining/protocolhandlers/} 1131 1132 \label{_:XACH2011} 1133 \bibitem{Xach2011} 1134 Zach Beene 1135 ``Quicklisp: A system for quickly constructing Common Lisp'' 1136 \url{http://www.quicklisp.org/} 1137 1138 \label{_:RHODES2007} 1139 \bibitem{Rhodes2007} 1140 Christopher Rhodes 1141 ``User-extensible Sequences in Common Lisp'' 1142 ILC '07 Proceedings of the 2007 International Lisp Conference 1143 % An early draft. XXX where is the real one? 1144 \url{http://jcsu.jesus.cam.ac.uk/~csr21/spec.pdf} 1145 1146 \label{_:AMOP} 1147 \bibitem{AMOP} 1148 Gregor Kiczales, Jim de Rivieres, and Daniel G. Bobrow 1149 The Art of the Metaobject Protocol 1150 % XXX online citation 1151 1152 \end{thebibliography} 1123 \bibliography{abcl} 1124 \bibliographystyle{alpha} 1153 1125 1154 1126 \printindex
Note: See TracChangeset
for help on using the changeset viewer.