/[classpath]/classpath/java/lang/Class.java
ViewVC logotype

Diff of /classpath/java/lang/Class.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.22.2.17 by gnu_andrew, Sun Aug 7 18:34:10 2005 UTC revision 1.22.2.18 by gnu_andrew, Tue Sep 20 18:46:27 2005 UTC
# Line 106  public final class Class<T> Line 106  public final class Class<T>
106    /** The class signers. */    /** The class signers. */
107    private Object[] signers = null;    private Object[] signers = null;
108    /** The class protection domain. */    /** The class protection domain. */
109    private final ProtectionDomain pd;    private final transient ProtectionDomain pd;
110    
111    /* We use an inner class, so that Class doesn't have a static initializer */    /* We use an inner class, so that Class doesn't have a static initializer */
112    private static final class StaticData    private static final class StaticData
# Line 728  public final class Class<T> Line 728  public final class Class<T>
728     * @param list List of methods to search     * @param list List of methods to search
729     * @param name Name of method     * @param name Name of method
730     * @param args Method parameter types     * @param args Method parameter types
731     * @see #getMethod()     * @see #getMethod(String, Class[])
732     */     */
733    private static Method matchMethod(Method[] list, String name, Class[] args)    private static Method matchMethod(Method[] list, String name, Class[] args)
734    {    {
# Line 836  public final class Class<T> Line 836  public final class Class<T>
836     * public and final, but not an interface.     * public and final, but not an interface.
837     *     *
838     * @return the modifiers of this class     * @return the modifiers of this class
839     * @see Modifer     * @see Modifier
840     * @since 1.1     * @since 1.1
841     */     */
842    public int getModifiers()    public int getModifiers()

Legend:
Removed from v.1.22.2.17  
changed lines
  Added in v.1.22.2.18

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26