Fixing JavaDoc

git-svn-id: svn://10.0.0.236/trunk@160760 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
igor%mir2.org
2004-08-14 15:08:32 +00:00
parent d157625d76
commit f972d58035

View File

@@ -45,9 +45,9 @@ package org.mozilla.javascript;
* instances or to notify about Context execution.
* <p>
* When Rhino runtime needs to create new {@link Context} instance during
* execution of {@link Context.enter()} or {@link Context}, it will call
* execution of {@link Context#enter()} or {@link Context}, it will call
* {@link #makeContext()} of the current global ContextFactory.
* See {@lnk #getGlobal()} and {@link #initGlobal(ContextFactory)}.
* See {@link #getGlobal()} and {@link #initGlobal(ContextFactory)}.
* <p>
* It is also possible to use explicit ContextFactory instances for Context
* creation. This is useful to have a set of independent Rhino runtime
@@ -83,7 +83,7 @@ package org.mozilla.javascript;
* {
* private long creationTime = System.currentTimeMillis();
*
* // Override {@Context#observeInstructionCount(int)}
* // Override {@link Context#observeInstructionCount(int)}
* protected void observeInstructionCount(int instructionCount)
* {
* long currentTime = System.currentTimeMillis();
@@ -96,7 +96,7 @@ package org.mozilla.javascript;
* }
* }
*
* // Override {@Context#hasFeature(int)}
* // Override {@link Context#hasFeature(int)}
* public boolean hasFeature(int featureIndex)
* {
* // Turn on maximim compatibility with MSIE scripts