Searched refs:htmlInfoText (Results 1 – 5 of 5) sorted by relevance
| /AOO41X/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ |
| H A D | InfoCtrl.java | 37 static public String setHtmlFrame(String position, String htmlInfoText) { in setHtmlFrame() argument 39 htmlInfoText = "<HTML><BODY><FONT FACE=\"sans-serif\" SIZE=3>"; in setHtmlFrame() 42 htmlInfoText = htmlInfoText + "</FONT></BODY></HTML>"; in setHtmlFrame() 45 return htmlInfoText; in setHtmlFrame() 48 …atic public String setReadyToInstallInfoText(ProductDescription productData, String htmlInfoText) { in setReadyToInstallInfoText() argument 51 … htmlInfoText = htmlInfoText + "<b>Product</b>: " + productData.get("product_fullname") + "<br>"; in setReadyToInstallInfoText() 53 htmlInfoText = htmlInfoText + "<b>Location</b>: " + data.getInstallDefaultDir() + "<br>"; in setReadyToInstallInfoText() 54 htmlInfoText = htmlInfoText + oneline + "<br>"; in setReadyToInstallInfoText() 56 return htmlInfoText; in setReadyToInstallInfoText() 59 …atic public String setReadyToInstallInfoText(PackageDescription packageData, String htmlInfoText) { in setReadyToInstallInfoText() argument [all …]
|
| /AOO41X/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/ |
| H A D | UninstallationImminentCtrl.java | 39 private String htmlInfoText = ""; field in UninstallationImminentCtrl 75 htmlInfoText = InfoCtrl.setHtmlFrame("header", htmlInfoText); in beforeShow() 76 htmlInfoText = InfoCtrl.setReadyToInstallInfoText(productData, htmlInfoText); in beforeShow() 77 htmlInfoText = InfoCtrl.setReadyToInstallInfoText(packageData, htmlInfoText); in beforeShow() 78 htmlInfoText = InfoCtrl.setHtmlFrame("end", htmlInfoText); in beforeShow() 81 panel.setInfoText(htmlInfoText); in beforeShow()
|
| H A D | InstallationImminentCtrl.java | 43 private String htmlInfoText = ""; field in InstallationImminentCtrl 106 htmlInfoText = InfoCtrl.setHtmlFrame("header", htmlInfoText); in beforeShow() 107 htmlInfoText = InfoCtrl.setReadyToInstallInfoText(productData, htmlInfoText); in beforeShow() 108 htmlInfoText = InfoCtrl.setReadyToInstallInfoText(packageData, htmlInfoText); in beforeShow() 109 htmlInfoText = InfoCtrl.setHtmlFrame("end", htmlInfoText); in beforeShow() 112 panel.setInfoText(htmlInfoText); in beforeShow()
|
| H A D | UninstallationCompletedCtrl.java | 40 private String htmlInfoText; field in UninstallationCompletedCtrl 78 htmlInfoText = InfoCtrl.setHtmlFrame("header", htmlInfoText); in beforeShow() 79 htmlInfoText = InfoCtrl.setInstallLogInfoText(productData, htmlInfoText); in beforeShow() 80 htmlInfoText = InfoCtrl.setHtmlFrame("end", htmlInfoText); in beforeShow() 96 return htmlInfoText; in getDialogText()
|
| H A D | InstallationCompletedCtrl.java | 41 private String htmlInfoText; field in InstallationCompletedCtrl 74 htmlInfoText = InfoCtrl.setHtmlFrame("header", htmlInfoText); in beforeShow() 75 htmlInfoText = InfoCtrl.setInstallLogInfoText(productData, htmlInfoText); in beforeShow() 76 htmlInfoText = InfoCtrl.setHtmlFrame("end", htmlInfoText); in beforeShow() 104 return htmlInfoText; in getDialogText()
|