diff options
Diffstat (limited to 'libjava/javax/naming/directory/Attributes.java')
| -rw-r--r-- | libjava/javax/naming/directory/Attributes.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libjava/javax/naming/directory/Attributes.java b/libjava/javax/naming/directory/Attributes.java new file mode 100644 index 00000000000..7d7c953a33f --- /dev/null +++ b/libjava/javax/naming/directory/Attributes.java @@ -0,0 +1,20 @@ +/* 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.directory; + +import javax.naming.*; +import java.io.Serializable; + +public interface Attributes extends Cloneable, Serializable +{ + // FIXME + + NamingEnumeration getAll (); +} + |

