@Deprecated public interface DebuggeeData extends oracle.ideimpl.debugger.extender.evaluator.CommonDataBase, Displayable
Modifier and Type | Method and Description |
---|---|
void |
adjustRange()
Deprecated.
Bring up the adjust range dialog.
|
boolean |
canAdjustRange()
Deprecated.
Determine if it's possible to adjust the range of this object
|
java.lang.String |
canGotoActualType()
Deprecated.
Determine if it's possible to go to the source file of the actual
type of this object
|
java.lang.String |
canGotoDeclaredType()
Deprecated.
Determine if it's possible to go to the source file of the declared
type of this object
|
java.lang.String |
canGotoField()
Deprecated.
Determine if it's possible to go to the source location of the field
IFF this object is a field
|
boolean |
canInspect()
Deprecated.
Determine if this object can be inspected
|
boolean |
canInspectClassLoader()
Deprecated.
Determine if the classloader of this object can be inspected
|
boolean |
canModifyValue()
Deprecated.
Determine if it's possible to modify any values of this object
|
boolean |
canShowObjectPreferences()
Deprecated.
Determine if it's possible to show the ObjectPreferences dialog on
this object
|
boolean |
canToggleValue()
Deprecated.
Determine if it's possible to toggle the value of this object
|
java.lang.String |
canViewAnnotations()
Deprecated.
Determine if it's possible to view the annotations of this object
|
boolean |
canViewAnnotationsForClass()
Deprecated.
Determine if it's possible to view the annotations of the class of
this object
|
boolean |
canViewWholeValue()
Deprecated.
Determine if the whole value of this object can be shown
|
boolean |
canWatch()
Deprecated.
Determine if this object can be watched
|
boolean |
canWatchClassLoader()
Deprecated.
Determine if the classloader of this object can be watched
|
java.lang.String |
getActualType()
Deprecated.
Get the runtime-type of this object.
|
java.lang.String |
getAddress()
Deprecated.
Get the address of this object, if possible
|
java.util.List<? extends DebuggeeData> |
getChildren()
Deprecated.
Get the display children of this object.
|
java.util.List<? extends DebuggeeData> |
getDeclaredFields()
Deprecated.
Get a list of declared fields for an object of kind OBJECT.
|
java.lang.String |
getDeclaredType()
Deprecated.
Get the declared type of this object.
|
DebuggeeData |
getField(java.lang.String fieldName)
Deprecated.
Get a field by name from an object of kind OBJECT.
|
java.util.List<? extends DebuggeeData> |
getFields()
Deprecated.
Get a list of fields for an object of kind OBJECT.
|
java.lang.String |
getFullyQualifiedActualType()
Deprecated.
Get the fully qualified runtime-type of this object.
|
java.lang.String |
getFullyQualifiedDeclaredType()
Deprecated.
Get the fully qualified declared type of this object.
|
java.lang.String |
getHexValue()
Deprecated.
Get the hex representation of this object, if possible
|
oracle.ideimpl.debugger.extender.evaluator.CommonDataBase.DataKind |
getKind()
Deprecated.
Get the kind of this object, if possible
|
int |
getRangeCount()
Deprecated.
Return the item count for the range that will be
displayed for array type data items
|
int |
getRangeStart()
Deprecated.
Return the start of the range that will be returned
for array type data items.
|
void |
gotoActualType()
Deprecated.
Attempt to go to the source file of the actual type of this object
|
void |
gotoDeclaredType()
Deprecated.
Attempt to go to the source file of the declared type of this object
|
void |
gotoField()
Deprecated.
Attempt to go to the source location of the field IFF this object
is a field
|
void |
inspect()
Deprecated.
Put up an inspector for this object
|
void |
inspectClassLoader()
Deprecated.
Put up an inspector for the classloader of this object
|
boolean |
mayHaveChildren()
Deprecated.
Find out if this object may have display children, which doesn't imply it
actually has children, just that it may.
|
void |
modifyValue()
Deprecated.
Show the dialog where details of this object can be modified.
|
void |
setDisplayName(java.lang.String displayName)
Deprecated.
Set the display name of an object, which will become the name
returned by getShortLabel().
|
boolean |
setMaximumRange()
Deprecated.
if the data item represents an array of some description, set the range to it's
maximum size.
|
boolean |
setRange(int start,
int count)
Deprecated.
Programmatically adjust the range (contrast to
adjustRange() which brings up a dialog).
|
void |
showObjectPreferences()
Deprecated.
Attempt to show the ObjectPreferences dialog on this object.
|
void |
toggleValue()
Deprecated.
Toggle the value of this object, if possible.
|
void |
viewAnnotations()
Deprecated.
View the annotations of this object in a special dialog
|
void |
viewAnnotationsForClass()
Deprecated.
View the annotations of the class of this object in a special dialog
|
void |
viewWholeValue()
Deprecated.
View the whole value of this object in a special dialog
|
void |
watch()
Deprecated.
Set a watch for this object
|
void |
watchClassLoader()
Deprecated.
Set a watch for the classloader of this object
|
getAttributedLabel, getIcon, getLongLabel, getShortLabel, getToolTipText, toString
boolean mayHaveChildren()
mayHaveChildren
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
java.util.List<? extends DebuggeeData> getChildren()
getChildren
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
java.lang.String getActualType()
getActualType
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
java.lang.String getFullyQualifiedActualType()
getFullyQualifiedActualType
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
java.lang.String getDeclaredType()
getDeclaredType
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
java.lang.String getFullyQualifiedDeclaredType()
getFullyQualifiedDeclaredType
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
java.lang.String getHexValue()
getHexValue
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
java.lang.String getAddress()
getAddress
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
oracle.ideimpl.debugger.extender.evaluator.CommonDataBase.DataKind getKind()
getKind
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
void inspect()
inspect
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
boolean canInspect()
canInspect
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
void watch()
watch
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
boolean canWatch()
canWatch
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
void inspectClassLoader()
inspectClassLoader
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
boolean canInspectClassLoader()
canInspectClassLoader
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
void watchClassLoader()
watchClassLoader
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
boolean canWatchClassLoader()
canWatchClassLoader
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
void viewWholeValue()
viewWholeValue
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
boolean canViewWholeValue()
canViewWholeValue
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
void gotoDeclaredType()
gotoDeclaredType
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
java.lang.String canGotoDeclaredType()
canGotoDeclaredType
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
void gotoActualType()
gotoActualType
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
java.lang.String canGotoActualType()
canGotoActualType
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
void gotoField()
gotoField
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
java.lang.String canGotoField()
canGotoField
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
void adjustRange()
adjustRange
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
boolean setRange(int start, int count)
setRange
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
start
- offset at which the range will begincount
- number of elements the range will contain.adjustRange()
,
getRangeStart()
,
getRangeCount()
boolean setMaximumRange()
setMaximumRange
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
int getRangeStart()
getRangeStart
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
int getRangeCount()
getRangeCount
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
boolean canAdjustRange()
canAdjustRange
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
void showObjectPreferences()
showObjectPreferences
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
boolean canShowObjectPreferences()
canShowObjectPreferences
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
void toggleValue()
toggleValue
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
boolean canToggleValue()
canToggleValue
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
void viewAnnotations()
viewAnnotations
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
java.lang.String canViewAnnotations()
canViewAnnotations
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
void viewAnnotationsForClass()
viewAnnotationsForClass
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
boolean canViewAnnotationsForClass()
canViewAnnotationsForClass
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
void modifyValue()
modifyValue
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
boolean canModifyValue()
canModifyValue
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
java.util.List<? extends DebuggeeData> getFields()
getFields
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
java.util.List<? extends DebuggeeData> getDeclaredFields()
getDeclaredFields
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
DebuggeeData getField(java.lang.String fieldName)
getField
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
fieldName
- The name of the fieldvoid setDisplayName(java.lang.String displayName)
setDisplayName
in interface oracle.ideimpl.debugger.extender.evaluator.CommonDataBase
displayName
- The new displayName of the object