diff options
| author | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-27 03:16:14 +0000 |
|---|---|---|
| committer | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-27 03:16:14 +0000 |
| commit | c59e6378223eba3d47ebeb9d261e762322c2d661 (patch) | |
| tree | fddd25f01c276e915b483a1138befefd75ad4852 /libjava/javax/naming/NamingEnumeration.java | |
| parent | 378db68f2e728a6ea8e1a814dae2433b32ef65fa (diff) | |
| download | ppe42-gcc-c59e6378223eba3d47ebeb9d261e762322c2d661.tar.gz ppe42-gcc-c59e6378223eba3d47ebeb9d261e762322c2d661.zip | |
Initial jndi check-in
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37770 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/javax/naming/NamingEnumeration.java')
| -rw-r--r-- | libjava/javax/naming/NamingEnumeration.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libjava/javax/naming/NamingEnumeration.java b/libjava/javax/naming/NamingEnumeration.java new file mode 100644 index 00000000000..aed4d76578f --- /dev/null +++ b/libjava/javax/naming/NamingEnumeration.java @@ -0,0 +1,18 @@ +/* Copyright (C) 2000 Free Software Foundation + + This file is part of libgcj. + +This software is copyrighted work licensed under the terms of the +Libgcj License. Please consult the file "LIBGCJ_LICENSE" for +details. */ + +package javax.naming; + +import java.util.Enumeration; + +public interface NamingEnumeration extends Enumeration +{ + public void close() throws NamingException; + public boolean hasMore() throws NamingException; + public Object next() throws NamingException; +} |

