Esempio n. 1
0
 /**
  * get the cougaar install path for a specific version
  *
  * @param version
  * @return
  */
 public static String getCougaarBaseLocation(String version) {
   return CougaarLocations.getCougaarBaseLocation(version);
 }
Esempio n. 2
0
 /**
  * get all of the cougaar locations stored in the workspace
  *
  * @return map of cougaar installs
  */
 public static Map getCougaarLocations() {
   return CougaarLocations.getAllCougaarLocations();
 }
Esempio n. 3
0
 /**
  * Set the cougaar install path for a cougaar version
  *
  * @param version the version to set the path for
  * @param cougaarInstallPath the cougaar install path
  */
 public static void setCougaarInstallPathLocation(String version, String cougaarInstallPath) {
   CougaarLocations.setCougaarLocation(version, cougaarInstallPath);
 }