IDeferredWorkbenchAdapter
. Deferred custom content is currently supported
by a provisional internal viewer framework.@Deprecated public abstract class DeferredDebugElementWorkbenchAdapter extends DebugElementWorkbenchAdapter implements IDeferredWorkbenchAdapter
Clients may subclass this class to provide custom adapters for elements in a debug
model. The debug platform provides IDeferredWorkbenchAdapters
for the standard debug
elements. Clients may override the default content in the debug view by providing an
IWorkbenchAdapter
or IDeferredWorkbenchAdapter
for a debug
element.
Modifier and Type | Field and Description |
---|---|
protected static Object[] |
EMPTY
Deprecated.
An empty collection of children
|
Constructor and Description |
---|
DeferredDebugElementWorkbenchAdapter()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
fetchDeferredChildren(Object object,
IElementCollector collector,
IProgressMonitor monitor)
Deprecated.
Called by a job run in a separate thread to fetch the children of this adapter.
|
ISchedulingRule |
getRule(Object object)
Deprecated.
Returns the rule used to schedule the deferred fetching of children for this adapter.
|
boolean |
isContainer()
Deprecated.
Returns whether this adapter may have children.
|
getBackground, getFont, getForeground, getImageDescriptor, getLabel
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getChildren, getImageDescriptor, getLabel, getParent
protected static final Object[] EMPTY
public DeferredDebugElementWorkbenchAdapter()
public boolean isContainer()
IDeferredWorkbenchAdapter
If false
is returned, then the content provider may assume
that this adapter has no children. If true
is returned,
then the job manager may assume that this adapter may have children.
isContainer
in interface IDeferredWorkbenchAdapter
true
if the adapter may have childen, and false
otherwise.public ISchedulingRule getRule(Object object)
IDeferredWorkbenchAdapter
getRule
in interface IDeferredWorkbenchAdapter
object
- the object whose children are being fetchednull
.Job.setRule(ISchedulingRule)
public void fetchDeferredChildren(Object object, IElementCollector collector, IProgressMonitor monitor)
IDeferredWorkbenchAdapter
It is good practice to check the passed in monitor for cancellation. This will provide good responsiveness for cancellation requests made by the user.
fetchDeferredChildren
in interface IDeferredWorkbenchAdapter
object
- the object to fetch the children forcollector
- the collector to notify about new children. Should not
be null
.monitor
- a progress monitor that will never be null to
support reporting and cancellation.
Copyright (c) 2000, 2015 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.