diff options
author | Anthony Green <green@gcc.gnu.org> | 2000-11-27 08:44:59 +0000 |
---|---|---|
committer | Anthony Green <green@gcc.gnu.org> | 2000-11-27 08:44:59 +0000 |
commit | 21434cfc60bf26efb66e19b4ef79ad7f8d549f66 (patch) | |
tree | 58ad1d15166d5df0f188923167c568cc6de83d71 /libjava/javax/naming/NameParser.java | |
parent | f24dbacf8520934c43f67f24acbfdc6540688a67 (diff) | |
download | gcc-21434cfc60bf26efb66e19b4ef79ad7f8d549f66.zip gcc-21434cfc60bf26efb66e19b4ef79ad7f8d549f66.tar.gz gcc-21434cfc60bf26efb66e19b4ef79ad7f8d549f66.tar.bz2 |
More new classes.
From-SVN: r37786
Diffstat (limited to 'libjava/javax/naming/NameParser.java')
-rw-r--r-- | libjava/javax/naming/NameParser.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libjava/javax/naming/NameParser.java b/libjava/javax/naming/NameParser.java new file mode 100644 index 0000000..366feac --- /dev/null +++ b/libjava/javax/naming/NameParser.java @@ -0,0 +1,16 @@ +/* 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; + +public interface NameParser +{ + public Name parse (String name) throws NamingException; +} + + |