Lines Matching defs:environment

40  * When the initial context is constructed, its environment
41 * is initialized with properties defined in the environment parameter
57 * environment parameter and (for appropriate properties) the applet
73 * The default policy uses the environment property
105 * When the environment property "java.naming.factory.initial" is
110 * to the users of the initial context any environment property- or
134 * The environment associated with this InitialContext.
136 * that accepts an environment or by the <tt>init()</tt> method.
162 * a subclass when the value of the environment parameter
165 * call this constructor, compute the value of the environment,
184 * No environment properties are supplied.
196 * Constructs an initial context using the supplied environment.
199 * <p> This constructor will not modify <tt>environment</tt>
202 * <tt>environment</tt> after it has been passed to the constructor.
204 * @param environment
205 * environment used to create the initial context.
206 * Null indicates an empty environment.
210 public InitialContext(Hashtable<?,?> environment)
213 if (environment != null) {
214 environment = (Hashtable)environment.clone();
216 init(environment);
220 * Initializes the initial context using the supplied environment.
223 * <p> This method will modify <tt>environment</tt> and save
226 * @param environment
227 * environment used to create the initial context.
228 * Null indicates an empty environment.
235 protected void init(Hashtable<?,?> environment)
238 myProps = ResourceManager.getInitialEnvironment(environment);
256 * environment may be modified independently and it may be accessed