diff options
Diffstat (limited to 'libjava/javax/naming/Name.java')
-rw-r--r-- | libjava/javax/naming/Name.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libjava/javax/naming/Name.java b/libjava/javax/naming/Name.java new file mode 100644 index 0000000..d07995b --- /dev/null +++ b/libjava/javax/naming/Name.java @@ -0,0 +1,17 @@ +/* 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.io.Serializable; + +public interface Name extends Cloneable, Serializable +{ + public int size (); + public String get (int index); +} |