Uses of Interface
javax.jnlp.DownloadServiceListener
-
Packages that use DownloadServiceListener 软件包 描述 javax.jnlp JNLP API旨在为Java Plugin中运行的JNLP应用程序提供附加服务,或者由Java Web Start启动。 -
-
Uses of DownloadServiceListener in javax.jnlp
Methods in javax.jnlp that return DownloadServiceListener Modifier and Type 方法 描述 DownloadServiceListener
DownloadService. getDefaultProgressWindow()
返回一个默认的DownloadServiceListener
实现,当传递给一个load
方法时,应该随着进度而弹出并更新一个进度窗口。Methods in javax.jnlp with parameters of type DownloadServiceListener Modifier and Type 方法 描述 void
DownloadService. loadExtensionPart(URL ref, String version, String[] parts, DownloadServiceListener progress)
如果在应用程序的JNLP文件中提到了部件和扩展名,请下载给定扩展的给定部分。void
DownloadService. loadExtensionPart(URL ref, String version, String part, DownloadServiceListener progress)
如果在应用程序的JNLP文件中提到了部分和扩展名,请下载给定扩展的给定部分。void
DownloadService. loadPart(String[] parts, DownloadServiceListener progress)
如果在应用程序的JNLP文件中提到了这些部分,请下载给定的部分。void
DownloadService. loadPart(String part, DownloadServiceListener progress)
下载给定的部分,如果该部分在应用程序的JNLP文件中被提到。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.
-