mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-21 00:09:57 +08:00
18205ca3b6
From-SVN: r37770
18 lines
488 B
Java
18 lines
488 B
Java
/* 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.spi;
|
|
|
|
import java.util.Hashtable;
|
|
import javax.naming.NamingException;
|
|
|
|
public interface InitialContextFactoryBuilder
|
|
{
|
|
public InitialContextFactory createInitialContextFactory (Hashtable environment) throws NamingException;
|
|
}
|