diff options
author | Sam Ruby <rubys@php.net> | 2000-06-14 01:41:13 +0000 |
---|---|---|
committer | Sam Ruby <rubys@php.net> | 2000-06-14 01:41:13 +0000 |
commit | f775d18b2c5be66ac4c0d808ffd494d5e73b995b (patch) | |
tree | 674c0a90a540c3e9e38860bed0c51e6410f3a972 /ext/java | |
parent | aa49d4af625fd5e5492dcd5e2b6cadd099f6e1c5 (diff) | |
download | php-git-f775d18b2c5be66ac4c0d808ffd494d5e73b995b.tar.gz |
Export the necessary functions to enable servlet support to be subclassed
This is in preparation for xml-cocoon support
Diffstat (limited to 'ext/java')
-rw-r--r-- | ext/java/reflect.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/java/reflect.java b/ext/java/reflect.java index 0f8992c203..348d89b3c9 100644 --- a/ext/java/reflect.java +++ b/ext/java/reflect.java @@ -22,7 +22,7 @@ import java.lang.reflect.*; import java.util.*; import java.beans.*; -class reflect { +public class reflect { static { loadLibrary("reflect"); } @@ -51,7 +51,7 @@ class reflect { // // Helper routines which encapsulate the native methods // - static void setResult(long result, Object value) { + public static void setResult(long result, Object value) { if (value == null) return; if (value instanceof java.lang.String) { |