This commit is contained in:
inonit%inonit.com 2007-04-14 00:47:26 +00:00
Родитель 9230cdc167
Коммит 966e7ddc26
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -41,10 +41,11 @@
package org.mozilla.javascript;
/**
* Factory class that Rhino runtime use to create new {@link Context}
* instances or to notify about Context execution.
* Factory class that Rhino runtime uses to create new {@link Context}
* instances. A <code>ContextFactory</code> can also notify listeners
* about context creation and release.
* <p>
* When Rhino runtime needs to create new {@link Context} instance during
* When the Rhino runtime needs to create new {@link Context} instance during
* execution of {@link Context#enter()} or {@link Context}, it will call
* {@link #makeContext()} of the current global ContextFactory.
* See {@link #getGlobal()} and {@link #initGlobal(ContextFactory)}.