1 11 12 package org.eclipse.jdt.launching; 13 14 import java.io.File ; 15 import java.net.URL ; 16 17 37 public interface IVMInstall { 38 47 IVMRunner getVMRunner(String mode); 48 54 String getId(); 55 61 String getName(); 62 68 void setName(String name); 69 75 File getInstallLocation(); 76 81 void setInstallLocation(File installLocation); 82 83 88 IVMInstallType getVMInstallType(); 89 90 101 LibraryLocation[] getLibraryLocations(); 102 103 111 void setLibraryLocations(LibraryLocation[] locations); 112 113 120 public void setJavadocLocation(URL url); 121 122 129 public URL getJavadocLocation(); 130 131 141 public String [] getVMArguments(); 142 143 155 public void setVMArguments(String [] vmArgs); 156 157 } 158 | Popular Tags |