< prev index next >
src/java.desktop/share/classes/sun/applet/Main.java
Print this page
@@ -227,11 +227,11 @@
* Following the relevant RFC, construct a valid URL based on the passed in
* string.
*
* @param url a string which represents either a relative or absolute URL.
* @return a URL when the passed in string can be interpreted according
- * to the RFC, <code>null</code> otherwise.
+ * to the RFC, {@code null} otherwise.
* @exception ParseException
* Thrown when we are unable to construct a proper URL from the
* passed in string.
*/
private URL parseURL(String url) throws ParseException {
@@ -268,12 +268,12 @@
/**
* Invoke the debugger with the arguments passed in to appletviewer.
*
* @param args The arguments passed into the debugger.
- * @return <code>0</code> if the debugger is invoked successfully,
- * <code>1</code> otherwise.
+ * @return {@code 0} if the debugger is invoked successfully,
+ * {@code 1} otherwise.
*/
private int invokeDebugger(String [] args) {
// CONSTRUCT THE COMMAND LINE
String [] newArgs = new String[args.length + 1];
int current = 0;
< prev index next >