use of org.eclipse.wst.xsl.jaxp.debug.ui.internal.tabs.processor.InstallStandin in project webtools.sourceediting by eclipse.
the class InstalledProcessorsBlock method fillWithWorkspaceProcessors.
protected void fillWithWorkspaceProcessors() {
List<InstallStandin> standins = new ArrayList<InstallStandin>();
IProcessorType[] types = JAXPRuntime.getProcessorTypes();
for (IProcessorType type : types) {
IProcessorInstall[] installs = JAXPRuntime.getProcessors(type.getId());
for (IProcessorInstall install : installs) {
standins.add(new InstallStandin(install));
}
}
setProcessors(standins.toArray(new IProcessorInstall[standins.size()]));
}
Aggregations