List of usage examples for org.eclipse.jface.viewers ILazyTreeContentProvider interface-usage
From source file ch.elexis.actions.TreeDataLoader.java
/**
* A PersistentObjectLoader for Tree-like structures. This reads its contents from a table that has
* a "parent"-field to denote ancestry
*
* @author gerry
*
From source file ch.elexis.core.ui.actions.TreeDataLoader.java
/**
* A PersistentObjectLoader for Tree-like structures. This reads its contents from a table that has
* a "parent"-field to denote ancestry
*
* @author gerry
*
From source file com.android.ddmuilib.heap.NativeHeapProviderByAllocations.java
/** * Content Provider for the native heap tree viewer in {@link NativeHeapPanel}. * It expects a {@link NativeHeapSnapshot} as input, and provides the list of allocations * in the heap dump as content to the UI. */ public final class NativeHeapProviderByAllocations implements ILazyTreeContentProvider {
From source file com.android.ddmuilib.heap.NativeHeapProviderByLibrary.java
/** * Content Provider for the native heap tree viewer in {@link NativeHeapPanel}. * It expects input of type {@link NativeHeapSnapshot}, and provides heap allocations * grouped by library to the UI. */ public class NativeHeapProviderByLibrary implements ILazyTreeContentProvider {
From source file com.ifedorenko.p2browser.views.InstallableUnitContentProvider.java
abstract class InstallableUnitContentProvider implements ILazyTreeContentProvider { private final TreeViewer treeViewer; private Map<IInstallableUnit, InstallableUnitNode> nodes; public InstallableUnitContentProvider(TreeViewer treeViewer) {
From source file com.ifedorenko.p2browser.views.InstallableUnitLazyContentProvider.java
abstract class InstallableUnitLazyContentProvider implements ILazyTreeContentProvider { private final TreeViewer treeViewer; private Map<IInstallableUnit, InstallableUnitNode> nodes; public InstallableUnitLazyContentProvider(TreeViewer treeViewer) {
From source file com.motorolamobility.studio.android.certmanager.ui.tree.KeystoreManagerTreeContentProvider.java
public class KeystoreManagerTreeContentProvider implements ILazyTreeContentProvider { private final TreeViewer treeViewer; public KeystoreManagerTreeContentProvider(TreeViewer viewer) { this.treeViewer = viewer;
From source file com.motorolamobility.studio.android.db.core.ui.tree.DatabaseExplorerTreeContentProvider.java
/** * Content provider that uses {@link AbstractTreeNode} as the model */ public class DatabaseExplorerTreeContentProvider implements ILazyTreeContentProvider { private final TreeViewer treeViewer;
From source file com.svcdelivery.liquibase.eclipse.internal.ui.DataSourceContentProvider.java
/** * Tree Content provider for data sources and sub elements. * * @author nick */ public class DataSourceContentProvider implements ILazyTreeContentProvider {
From source file de.gebit.integrity.eclipse.views.TestTreeContentProvider.java
/**
* Provides the content for the main test execution tree.
*
* @author Rene Schneider - initial API and implementation
*
*/