Java Reference
In-Depth Information
L ISTING 7.1 Continued
// accessory methods
public int getAlreadyInstalled(){
return alreadyInstalledFiles;
}
public int getTotalItemsToInstall(){
return resources.length;
}
7
public String getDestinationDir(){
return destinationDir;
}
public void setDestinationDir(String dir){
destinationDir = dir;
}
public void setInstallJre(boolean newInstallJre) {
installJre = newInstallJre;
}
public boolean isInstallJre() {
return installJre;
}
public void setShowReadme(boolean newShowReadme) {
showReadme = newShowReadme;
}
public boolean isShowReadme() {
return showReadme;
}
public String[] getFullInstallationFiles() {
return fullInstallationFiles;
}
public String[] getFullInstallationDesc() {
return fullInstallationDesc;
}
Search WWH ::




Custom Search