langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/Configuration.java
changeset 14361 2814fa6977ac
parent 14263 473b1eaede64
child 14368 6f4c62de6985
equal deleted inserted replaced
14360:2a8304e421ed 14361:2814fa6977ac
   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");