diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-01-14 10:15:29 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-01-14 10:15:29 +0000 |
commit | 9e7c3bcdba010a8a46d9a51d221e02222a6efc89 (patch) | |
tree | dff0563158f6cfb5a3169eea0cbb70bec200b8f0 /libjava/classpath/javax/naming/NamingEnumeration.java | |
parent | 7493a7e159c3886ea2effc5f1c5dd52adf1aac64 (diff) | |
download | gcc-9e7c3bcdba010a8a46d9a51d221e02222a6efc89.tar.gz |
2011-01-14 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk rev 168776
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@168777 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/classpath/javax/naming/NamingEnumeration.java')
-rw-r--r-- | libjava/classpath/javax/naming/NamingEnumeration.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libjava/classpath/javax/naming/NamingEnumeration.java b/libjava/classpath/javax/naming/NamingEnumeration.java index a7c57706f8b..cd0963d412c 100644 --- a/libjava/classpath/javax/naming/NamingEnumeration.java +++ b/libjava/classpath/javax/naming/NamingEnumeration.java @@ -35,7 +35,7 @@ this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ - + package javax.naming; import java.util.Enumeration; @@ -58,16 +58,16 @@ public interface NamingEnumeration<T> extends Enumeration<T> * Returns the next element in this enumeration. The naming - specific * exceptions are only throws after returning all still available elements of * the enumeration. - * + * * @return the next element of this enumeration * @throws NamingException */ T next() throws NamingException; - + /** * Checks if there are more unvisited elements in the enumeration, throwing * exceptions if there are some unvisited, but not available elements. - * + * * @return true if there are some unvisited elements, false otherwise. * @throws PartialResultException if the enumeration, returned by the * {@link Context#list(Name)} or other similar method contains only @@ -77,13 +77,13 @@ public interface NamingEnumeration<T> extends Enumeration<T> * @throws NamingException */ boolean hasMore() throws NamingException; - + /** * Immediately frees all resources, owned by this enumeration. If invoked, it * must be the last method called for that enumeration. - * + * * @throws NamingException - */ + */ void close() throws NamingException; } |