Changeset 13864


Ignore:
Timestamp:
02/07/12 08:59:24 (11 years ago)
Author:
rschlatte
Message:

Remove export of some internal symbols from package java.

... also re-create documentation.

Location:
trunk/abcl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/doc/manual/java.tex

    r13858 r13864  
    137137
    138138\paragraph{}
     139\label{JAVA:GET-DEFAULT-CLASSLOADER}
     140\index{GET-DEFAULT-CLASSLOADER}
     141--- Function: \textbf{get-default-classloader} [\textbf{java}] \textit{}
     142
     143\begin{adjustwidth}{5em}{5em}
     144not-documented
     145\end{adjustwidth}
     146
     147\paragraph{}
     148\label{JAVA:JCLASS-METHODS}
     149\index{JCLASS-METHODS}
     150--- Function: \textbf{jclass-methods} [\textbf{java}] \textit{class \&key declared public}
     151
     152\begin{adjustwidth}{5em}{5em}
     153Return a vector of all (or just the declared/public, if DECLARED/PUBLIC is true) methods of CLASS
     154\end{adjustwidth}
     155
     156\paragraph{}
    139157\label{JAVA:GET-CURRENT-CLASSLOADER}
    140158\index{GET-CURRENT-CLASSLOADER}
     
    146164
    147165\paragraph{}
    148 \label{JAVA:JGET-PROPERTY-VALUE}
    149 \index{JGET-PROPERTY-VALUE}
    150 --- Function: \textbf{\%jget-property-value} [\textbf{java}] \textit{java-object property-name}
    151 
    152 \begin{adjustwidth}{5em}{5em}
    153 Gets a JavaBeans property on JAVA-OBJECT.
    154 SYSTEM-INTERNAL: Use jproperty-value instead.
     166\label{JAVA:REGISTER-JAVA-EXCEPTION}
     167\index{REGISTER-JAVA-EXCEPTION}
     168--- Function: \textbf{register-java-exception} [\textbf{java}] \textit{exception-name condition-symbol}
     169
     170\begin{adjustwidth}{5em}{5em}
     171Registers the Java Throwable named by the symbol EXCEPTION-NAME as the condition designated by CONDITION-SYMBOL.  Returns T if successful, NIL if not.
     172\end{adjustwidth}
     173
     174\paragraph{}
     175\label{JAVA:JCLASS}
     176\index{JCLASS}
     177--- Function: \textbf{jclass} [\textbf{java}] \textit{name-or-class-ref \&optional class-loader}
     178
     179\begin{adjustwidth}{5em}{5em}
     180Returns a reference to the Java class designated by NAME-OR-CLASS-REF. If the CLASS-LOADER parameter is passed, the class is resolved with respect to the given ClassLoader.
    155181\end{adjustwidth}
    156182
     
    174200
    175201\paragraph{}
    176 \label{JAVA:GET-DEFAULT-CLASSLOADER}
    177 \index{GET-DEFAULT-CLASSLOADER}
    178 --- Function: \textbf{get-default-classloader} [\textbf{java}] \textit{}
    179 
    180 \begin{adjustwidth}{5em}{5em}
    181 not-documented
    182 \end{adjustwidth}
    183 
    184 \paragraph{}
    185 \label{JAVA:JCLASS-METHODS}
    186 \index{JCLASS-METHODS}
    187 --- Function: \textbf{jclass-methods} [\textbf{java}] \textit{class \&key declared public}
    188 
    189 \begin{adjustwidth}{5em}{5em}
    190 Return a vector of all (or just the declared/public, if DECLARED/PUBLIC is true) methods of CLASS
    191 \end{adjustwidth}
    192 
    193 \paragraph{}
    194 \label{JAVA:REGISTER-JAVA-EXCEPTION}
    195 \index{REGISTER-JAVA-EXCEPTION}
    196 --- Function: \textbf{register-java-exception} [\textbf{java}] \textit{exception-name condition-symbol}
    197 
    198 \begin{adjustwidth}{5em}{5em}
    199 Registers the Java Throwable named by the symbol EXCEPTION-NAME as the condition designated by CONDITION-SYMBOL.  Returns T if successful, NIL if not.
    200 \end{adjustwidth}
    201 
    202 \paragraph{}
    203 \label{JAVA:JCLASS}
    204 \index{JCLASS}
    205 --- Function: \textbf{jclass} [\textbf{java}] \textit{name-or-class-ref \&optional class-loader}
    206 
    207 \begin{adjustwidth}{5em}{5em}
    208 Returns a reference to the Java class designated by NAME-OR-CLASS-REF. If the CLASS-LOADER parameter is passed, the class is resolved with respect to the given ClassLoader.
    209 \end{adjustwidth}
    210 
    211 \paragraph{}
    212202\label{JAVA:JPROPERTY-VALUE}
    213203\index{JPROPERTY-VALUE}
     
    216206\begin{adjustwidth}{5em}{5em}
    217207not-documented
    218 \end{adjustwidth}
    219 
    220 \paragraph{}
    221 \label{JAVA:JSET-PROPERTY-VALUE}
    222 \index{JSET-PROPERTY-VALUE}
    223 --- Function: \textbf{\%jset-property-value} [\textbf{java}] \textit{java-object property-name value}
    224 
    225 \begin{adjustwidth}{5em}{5em}
    226 Sets a JavaBean property on JAVA-OBJECT.
    227 SYSTEM-INTERNAL: Use (setf jproperty-value) instead.
    228208\end{adjustwidth}
    229209
  • trunk/abcl/src/org/armedbear/lisp/Java.java

    r13687 r13864  
    12291229        pf__jget_property_value()
    12301230        {
    1231       super("%jget-property-value", PACKAGE_JAVA, true,
     1231      super("%jget-property-value", PACKAGE_JAVA, false,
    12321232                  "java-object property-name");
    12331233        }
     
    12601260        pf__jset_property_value()
    12611261        {
    1262       super("%jset-property-value", PACKAGE_JAVA, true,
     1262      super("%jset-property-value", PACKAGE_JAVA, false,
    12631263                  "java-object property-name value");
    12641264        }
Note: See TracChangeset for help on using the changeset viewer.