Merged gcj-eclipse branch to trunk.

From-SVN: r120621
This commit is contained in:
Tom Tromey 2007-01-09 19:58:05 +00:00
parent c648dedbde
commit 97b8365caf
17478 changed files with 606493 additions and 100744 deletions

View file

@ -53,14 +53,14 @@ import javax.naming.NamingException;
public interface InitialContextFactoryBuilder
{
/**
* Create the new inital context factory
* Create the new initial context factory
*
* @param environment the properties, used for creation of the initial context
* factory. The parameter is owned by the caller: it is safe to reuse
* the table for other purposes after the method returns.
* @param environment the properties, used for creation of the initial
* context factory. The parameter is owned by the caller: it is safe to reuse
* the table for other purposes after the method returns.
* @return the created initial context factory, never null.
* @throws NamingException on failure
*/
InitialContextFactory createInitialContextFactory (Hashtable environment)
InitialContextFactory createInitialContextFactory (Hashtable<?, ?> environment)
throws NamingException;
}