src/share/classes/com/sun/tools/doclets/internal/toolkit/Configuration.java

changeset 1376
217c265158fe
parent 1362
c46e0c9940d6
child 1383
b980e8e6aabf
equal deleted inserted replaced
1375:ea2616a6bd01 1376:217c265158fe
406 serialwarn = true; 406 serialwarn = true;
407 } else if (opt.equals("-group")) { 407 } else if (opt.equals("-group")) {
408 group.checkPackageGroups(os[1], os[2]); 408 group.checkPackageGroups(os[1], os[2]);
409 } else if (opt.equals("-link")) { 409 } else if (opt.equals("-link")) {
410 String url = os[1]; 410 String url = os[1];
411 extern.url(url, url, root, false); 411 extern.link(url, url, root, false);
412 } else if (opt.equals("-linkoffline")) { 412 } else if (opt.equals("-linkoffline")) {
413 String url = os[1]; 413 String url = os[1];
414 String pkglisturl = os[2]; 414 String pkglisturl = os[2];
415 extern.url(url, pkglisturl, root, true); 415 extern.link(url, pkglisturl, root, true);
416 } 416 }
417 } 417 }
418 if (sourcepath.length() == 0) { 418 if (sourcepath.length() == 0) {
419 sourcepath = System.getProperty("env.class.path") == null ? "" : 419 sourcepath = System.getProperty("env.class.path") == null ? "" :
420 System.getProperty("env.class.path"); 420 System.getProperty("env.class.path");

mercurial