Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/lang/Class.h

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    11// Class.h - Header file for java.lang.Class.  -*- c++ -*-
    22
    3 /* Copyright (C) 1998, 1999, 2000, 2001  Free Software Foundation
     3/* Copyright (C) 1998, 1999, 2000, 2001  Free Software Foundation
    44
    55   This file is part of libgcj.
     
    2020#include <java/lang/reflect/Modifier.h>
    2121#include <java/security/ProtectionDomain.h>
     22
     23
    2224
    2325// We declare these here to avoid including gcj/cni.h.
     
    4648
    4749  JV_STATE_IN_PROGRESS = 10,    // <Clinit> running.
    48   JV_STATE_DONE = 12,           //
    49 
    50   JV_STATE_ERROR = 14           // must be last.
     50
     51  JV_STATE_ERROR = 12,
     52
     53  JV_STATE_DONE = 14            // Must be last.
    5154};
    5255
     
    137140  java::lang::ClassLoader *getClassLoader (void);
    138141
     142
     143
     144
     145
     146
     147
     148
    139149  java::lang::reflect::Constructor *getConstructor (JArray<jclass> *);
    140150  JArray<java::lang::reflect::Constructor *> *getConstructors (void);
     
    160170  java::security::ProtectionDomain *getProtectionDomain0 ();
    161171
     172
     173
     174
    162175public:
    163176  JArray<java::lang::reflect::Field *> *getFields (void);
     
    167180  void getSignature (java::lang::StringBuffer *buffer);
    168181  static jstring getSignature (JArray<jclass> *, jboolean is_constructor);
    169   java::lang::reflect::Method *getMethod (jstring, JArray<jclass> *);
    170182  JArray<java::lang::reflect::Method *> *getMethods (void);
    171183
    172184  inline jint getModifiers (void)
    173     {
    174       return accflags;
    175     }
     185  {
     186    ;
     187  }
    176188
    177189  jstring getName (void);
     
    210222
    211223  jobject newInstance (void);
     224
     225
    212226  jstring toString (void);
     227
    213228
    214229  // FIXME: this probably shouldn't be public.
     
    232247
    233248  void initializeClass (void);
     249
     250
    234251
    235252  // Friend functions implemented in natClass.cc.
     
    288305  friend jclass _Jv_FindClassInCache (_Jv_Utf8Const *name,
    289306                                      java::lang::ClassLoader *loader);
     307
     308
    290309  friend void _Jv_NewArrayClass (jclass element,
    291310                                 java::lang::ClassLoader *loader,
     
    307326  friend void _Jv_LinkOffsetTable (jclass);
    308327  friend void _Jv_LayoutVTableMethods (jclass klass);
    309   friend void _Jv_SetVTableEntries (jclass, _Jv_VTable *);
     328  friend void _Jv_SetVTableEntries (jclass, _Jv_VTable *);
    310329  friend void _Jv_MakeVTable (jclass);
    311330
     
    323342  friend jboolean _Jv_IsInterpretedClass (jclass);
    324343  friend void _Jv_InitField (jobject, jclass, _Jv_Field*);
    325   friend int _Jv_DetermineVTableIndex (jclass, _Jv_Utf8Const *,
    326                                        _Jv_Utf8Const*);
    327344  friend void _Jv_InitField (jobject, jclass, int);
    328345  friend _Jv_word _Jv_ResolvePoolEntry (jclass, int);
     
    332349
    333350  friend void _Jv_PrepareClass (jclass);
     351
    334352
    335353  friend class _Jv_ClassReader;
    336354  friend class _Jv_InterpClass;
    337355  friend class _Jv_InterpMethod;
    338   friend class _Jv_InterpMethodInvocation;
    339356#endif
    340357
     
    344361
    345362  friend class _Jv_BytecodeVerifier;
     363
     364
    346365
    347366  // Chain for class pool.
     
    398417  // Security Domain to which this class belongs (or null).
    399418  java::security::ProtectionDomain *protectionDomain;
     419
     420
    400421};
    401422
Note: See TracChangeset for help on using the changeset viewer.