Uses of Interface
javax.jnlp.DownloadServiceListener
-
Packages that use DownloadServiceListener Package Description javax.jnlp The JNLP API is designed to provide additional services to JNLP applications running in the Java Plugin or launched by Java Web Start. -
-
Uses of DownloadServiceListener in javax.jnlp
Methods in javax.jnlp that return DownloadServiceListener Modifier and Type Method Description DownloadServiceListener
DownloadService. getDefaultProgressWindow()
Return a defaultDownloadServiceListener
implementation which, when passed to aload
method, should pop up and update a progress window as the load progresses.Methods in javax.jnlp with parameters of type DownloadServiceListener Modifier and Type Method Description void
DownloadService. loadExtensionPart(URL ref, String version, String[] parts, DownloadServiceListener progress)
Downloads the given parts of the given extension, if the parts and the extension are mentioned in the JNLP file for the application.void
DownloadService. loadExtensionPart(URL ref, String version, String part, DownloadServiceListener progress)
Downloads the given part of the given extension, if the part and the extension are mentioned in the JNLP file for the application.void
DownloadService. loadPart(String[] parts, DownloadServiceListener progress)
Downloads the given parts, if the parts are mentioned in the JNLP file for the application.void
DownloadService. loadPart(String part, DownloadServiceListener progress)
Downloads the given part, if the part is mentioned in the JNLP file for the application.void
DownloadService. loadResource(URL ref, String version, DownloadServiceListener progress)
Downloads the given resource, if the resource is either mentioned in the calling applications JNLP file, is within the codebase of the calling applications JNLP file, or if the calling application has been granted all-permissions.
-