本文整理汇总了Java中org.eclipse.jface.viewers.IStructuredSelection.toList方法的典型用法代码示例。如果您正苦于以下问题:Java IStructuredSelection.toList方法的具体用法?Java IStructuredSelection.toList怎么用?Java IStructuredSelection.toList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.jface.viewers.IStructuredSelection
的用法示例。
在下文中一共展示了IStructuredSelection.toList方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: modifyEvent
import org.eclipse.jface.viewers.IStructuredSelection; //导入方法依赖的package包/类
/**
* Ensures that IProject is present as first element
* and DBPair is present as second element of the selection.
*/
private SelectionChangedEvent modifyEvent(SelectionChangedEvent event, DBPair dbPair) {
ISelection selection = event.getSelection();
if (selection.isEmpty()) {
return defaultSelectionEvent;
}
if (!(selection instanceof IStructuredSelection)) {
Log.log(Log.LOG_WARNING, "Cannot handle this selection type: " + selection.toString()); //$NON-NLS-1$
// no way to deal with empty/other types of selections
return defaultSelectionEvent;
}
IStructuredSelection sel = (IStructuredSelection) selection;
List<?> elements = sel.toList();
List<Object> newElements = new ArrayList<>(elements.size() + 2);
newElements.add(proj);
newElements.add(dbPair);
newElements.addAll(elements);
return new SelectionChangedEvent((ISelectionProvider) event.getSource(),
new StructuredSelection(newElements));
}
示例2: collectFiles
import org.eclipse.jface.viewers.IStructuredSelection; //导入方法依赖的package包/类
/** Collects files from provided selection. */
public List<IFile> collectFiles(IStructuredSelection structuredSelection) {
Set<IFile> collected = new HashSet<>();
for (Object object : structuredSelection.toList()) {
collectRelevantFiles(object, collected);
}
return Lists.newArrayList(collected);
}
示例3: canEnable
import org.eclipse.jface.viewers.IStructuredSelection; //导入方法依赖的package包/类
private boolean canEnable(final IStructuredSelection sel) {
if (sel.size() == 0) {
return true;
}
final List<?> list = sel.toList();
for (final Iterator<?> iterator = list.iterator(); iterator.hasNext(); /**/) {
if (!isNewTarget(iterator.next())) {
return false;
}
}
return true;
}
示例4: init
import org.eclipse.jface.viewers.IStructuredSelection; //导入方法依赖的package包/类
@Override
public void init(IWorkbench workbench, IStructuredSelection selection) {
this.workbench = workbench;
setWindowTitle((MessageUtil.getString("GraphWalker_Generator_File"))); //$NON-NLS-1$
setDefaultPageImageDescriptor(WIZARD_BANNER);
List models = selection.toList();
model = (IFile) models.get(0);
ids = (List<String>) models.get(1);
}
示例5: setSelectionSubtreesChecked
import org.eclipse.jface.viewers.IStructuredSelection; //导入方法依赖的package包/类
private void setSelectionSubtreesChecked(IStructuredSelection selection, boolean checked) {
for (Object o : selection.toList()) {
TreeElement el = (TreeElement) o;
setSubTreeChecked(el, checked);
}
viewerChecksUpdated();
}
示例6: getModels
import org.eclipse.jface.viewers.IStructuredSelection; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
protected Collection<ZnodeModel> getModels(IStructuredSelection selection) {
return selection.toList();
}
示例7: getSelectionList
import org.eclipse.jface.viewers.IStructuredSelection; //导入方法依赖的package包/类
private List<?> getSelectionList(IStructuredSelection selection) {
return (selection != null && selection.size() > 1) ? selection.toList()
: Collections.emptyList();
}