/[classpath]/classpath/gnu/classpath/Configuration.java.in
ViewVC logotype

Diff of /classpath/gnu/classpath/Configuration.java.in

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

revision 1.3 by bryce, Wed Sep 5 07:20:44 2001 UTC revision 1.4 by ericb, Sun Oct 21 01:12:06 2001 UTC
# Line 1  Line 1 
1  /* gnu.classpath.Configuration  /* gnu.classpath.Configuration
2     Copyright (C) 1998 Free Software Foundation, Inc.     Copyright (C) 1998, 2001 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 52  public interface Configuration Line 52  public interface Configuration
52     * not require additional shared libraries to be loaded.     * not require additional shared libraries to be loaded.
53     */     */
54    boolean INIT_LOAD_LIBRARY = @INIT_LOAD_LIBRARY@;    boolean INIT_LOAD_LIBRARY = @INIT_LOAD_LIBRARY@;
55    
56      /**
57       * Set to true if the VM provides a native method to implement
58       * Proxy.getProxyClass completely, including argument verification.
59       * If this is true, HAVE_NATIVE_GET_PROXY_DATA and
60       * HAVE_NATIVE_GENERATE_PROXY_CLASS should be false.
61       * @see java.util.reflect.Proxy
62       */
63      boolean HAVE_NATIVE_GET_PROXY_CLASS = false;
64    
65      /**
66       * Set to true if the VM provides a native method to implement
67       * the first part of Proxy.getProxyClass: generation of the array
68       * of methods to convert, and verification of the arguments.
69       * If this is true, HAVE_NATIVE_GET_PROXY_CLASS should be false.
70       * @see java.util.reflect.Proxy
71       */
72      boolean HAVE_NATIVE_GET_PROXY_DATA = false;
73    
74      /**
75       * Set to true if the VM provides a native method to implement
76       * the second part of Proxy.getProxyClass: conversion of an array of
77       * methods into an actual proxy class.
78       * If this is true, HAVE_NATIVE_GET_PROXY_CLASS should be false.
79       * @see java.util.reflect.Proxy
80       */
81      boolean HAVE_NATIVE_GENERATE_PROXY_CLASS = false;
82  }  }

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

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