当前页面:
在线文档首页 >
NetBeans API Javadoc 5.0.0
CustomPlatformInstall (NetBeans Java Platform API) - NetBeans API Javadoc 5.0.0
org.netbeans.spi.java.platform
Class CustomPlatformInstall
java.lang.Object
org.netbeans.spi.java.platform.GeneralPlatformInstall
org.netbeans.spi.java.platform.CustomPlatformInstall
- public abstract class CustomPlatformInstall
- extends GeneralPlatformInstall
Defines an API for registering custom Java platform installer. The installer
is responsible for instantiation of JavaPlatform
through the provided
TemplateWizard.Iterator. If your installer selects the platform on the local disk you
probably don't want to use this class, the PlatformInstall
class
creates an platform chooser for you. You want to use this class if the
platform is not on the local disk, eg. you want to download it from the web.
- Since:
- 1.5
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CustomPlatformInstall
public CustomPlatformInstall()
createIterator
public abstract WizardDescriptor.InstantiatingIterator createIterator()
- Returns the
WizardDescriptor#InstantiatingIterator
used to install
the platform.
- Returns:
- TemplateWizard.Iterator instance responsible for instantiating
the platform. The instantiate method of the returned iterator should
return the Set containing the created JavaPlatform.