Home
last modified time | relevance | path

Searched refs:htmlInfoText (Results 1 – 5 of 5) sorted by relevance

/AOO41X/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/
H A DInfoCtrl.java37 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
51htmlInfoText = 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 DUninstallationImminentCtrl.java39 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 DInstallationImminentCtrl.java43 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 DUninstallationCompletedCtrl.java40 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 DInstallationCompletedCtrl.java41 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()