aboutsummaryrefslogtreecommitdiff
path: root/libjava/javax/naming/NameParser.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/javax/naming/NameParser.java')
-rw-r--r--libjava/javax/naming/NameParser.java16
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;
+}
+
+