Class.h (_getMethods): Correctly declare as private, not public.

* java/lang/Class.h (_getMethods): Correctly declare as private,
	not public.

From-SVN: r31246
This commit is contained in:
Tom Tromey 2000-01-05 22:29:27 +00:00 committed by Tom Tromey
parent 6f2b93eb2f
commit 1258cadadc
2 changed files with 5 additions and 2 deletions

View file

@ -97,6 +97,8 @@ private:
jint _getFields (JArray<java::lang::reflect::Field *> *result, jint offset);
JArray<java::lang::reflect::Constructor *> *_getConstructors (jboolean);
java::lang::reflect::Field *getField (jstring, jint);
jint _getMethods (JArray<java::lang::reflect::Method *> *result,
jint offset);
public:
JArray<java::lang::reflect::Field *> *getFields (void);
@ -105,8 +107,6 @@ public:
void getSignature (java::lang::StringBuffer *buffer);
static jstring getSignature (JArray<jclass> *, jboolean is_constructor);
java::lang::reflect::Method *getMethod (jstring, JArray<jclass> *);
jint _getMethods (JArray<java::lang::reflect::Method *> *result,
jint offset);
JArray<java::lang::reflect::Method *> *getMethods (void);
jint getModifiers (void)