public static void primeApplication(String mainBundleName,
String mainBundlePath,
String nameOfApplicationSubclass)
Should be
public static void primeApplication(String mainBundleName, URL
mainBundlePathURL, String nameOfApplicationSubclass)
2)
At the url above any of the primeApplication methods are marked as
deprecated.
Yes, this is a bug in the Doc. It looks like a cut/paste error.
3)
javac tells me that primeApplication(String, URL, String) also is
deprecated. This is on osx 10.3.1 with WO5.2.2 and ant 1.5.3.
[javac]
/Users/kajh/src/webobjects/nettskjema/src/NettskjemaTestCase.java:37:
warning:
primeApplication(java.lang.String,java.net.URL,java.lang.String) in
com.webobjects.appserver.WOApplication has been deprecated
[javac] WOApplication.primeApplication("", new URL(""),
"");
javac uses the same mechanism as javadoc to determine if something is
deprecated. You will just have to ignore this for now.