< prev index next >

make/data/jdwp/jdwp.spec

Print this page

        

*** 394,404 **** (boolean canAddMethod "Can the VM add methods when redefining " "classes?") (boolean canUnrestrictedlyRedefineClasses "Can the VM redefine classes" ! "in arbitrary ways?") (boolean canPopFrames "Can the VM pop stack frames?") (boolean canUseInstanceFilters "Can the VM filter events by specific object?") (boolean canGetSourceDebugExtension --- 394,404 ---- (boolean canAddMethod "Can the VM add methods when redefining " "classes?") (boolean canUnrestrictedlyRedefineClasses "Can the VM redefine classes" ! "in ways that are normally restricted?") (boolean canPopFrames "Can the VM pop stack frames?") (boolean canUseInstanceFilters "Can the VM filter events by specific object?") (boolean canGetSourceDebugExtension
*** 458,473 **** "All breakpoints in the redefined classes are cleared." "If resetting of stack frames is desired, the " "<a href=\"#JDWP_StackFrame_PopFrames\">PopFrames</a> command can be used " "to pop frames with obsolete methods." "<p>" "Requires canRedefineClasses capability - see " "<a href=\"#JDWP_VirtualMachine_CapabilitiesNew\">CapabilitiesNew</a>. " "In addition to the canRedefineClasses capability, the target VM must " "have the canAddMethod capability to add methods when redefining classes, " ! "or the canUnrestrictedlyRedefineClasses to redefine classes in arbitrary " ! "ways." (Out (Repeat classes "Number of reference types that follow." (Group ClassDef (referenceType refType "The reference type.") (Repeat classfile "Number of bytes defining class (below)" --- 458,484 ---- "All breakpoints in the redefined classes are cleared." "If resetting of stack frames is desired, the " "<a href=\"#JDWP_StackFrame_PopFrames\">PopFrames</a> command can be used " "to pop frames with obsolete methods." "<p>" + "Unless the canUnrestrictedlyRedefineClasses capability is present the following " + "redefinitions are restricted: " + "<ul>" + "<li>changing the schema (the fields)</li>" + "<li>changing the hierarchy (superclasses, interfaces)</li>" + "<li>deleting a method</li>" + "<li>changing class modifiers</li>" + "<li>changing method modifiers</li>" + "<li>changing the <code>NestHost</code> or <code>NestMembers</code> class attributes</li>" + "</ul>" + "<p>" "Requires canRedefineClasses capability - see " "<a href=\"#JDWP_VirtualMachine_CapabilitiesNew\">CapabilitiesNew</a>. " "In addition to the canRedefineClasses capability, the target VM must " "have the canAddMethod capability to add methods when redefining classes, " ! "or the canUnrestrictedlyRedefineClasses capability to redefine classes in ways " ! "that are normally restricted." (Out (Repeat classes "Number of reference types that follow." (Group ClassDef (referenceType refType "The reference type.") (Repeat classfile "Number of bytes defining class (below)"
*** 494,503 **** --- 505,515 ---- (Error SCHEMA_CHANGE_NOT_IMPLEMENTED) (Error HIERARCHY_CHANGE_NOT_IMPLEMENTED) (Error DELETE_METHOD_NOT_IMPLEMENTED) (Error CLASS_MODIFIERS_CHANGE_NOT_IMPLEMENTED) (Error METHOD_MODIFIERS_CHANGE_NOT_IMPLEMENTED) + (Error CLASS_ATTRIBUTE_CHANGE_NOT_IMPLEMENTED) (Error VM_DEAD) ) ) (Command SetDefaultStratum=19 "Set the default stratum. Requires canSetDefaultStratum capability - see "
*** 3147,3162 **** "by this VM.") (Constant NAMES_DONT_MATCH =69 "The class name defined in the new class file is " "different from the name in the old class object.") (Constant CLASS_MODIFIERS_CHANGE_NOT_IMPLEMENTED =70 "The new class version has different modifiers and " ! "and canUnrestrictedlyRedefineClasses is false.") (Constant METHOD_MODIFIERS_CHANGE_NOT_IMPLEMENTED =71 "A method in the new class version has " "different modifiers " "than its counterpart in the old class version and " ! "and canUnrestrictedlyRedefineClasses is false.") (Constant NOT_IMPLEMENTED =99 "The functionality is not implemented in " "this virtual machine.") (Constant NULL_POINTER =100 "Invalid pointer.") (Constant ABSENT_INFORMATION =101 "Desired information is not available.") (Constant INVALID_EVENT_TYPE =102 "The specified event type id is not recognized.") --- 3159,3178 ---- "by this VM.") (Constant NAMES_DONT_MATCH =69 "The class name defined in the new class file is " "different from the name in the old class object.") (Constant CLASS_MODIFIERS_CHANGE_NOT_IMPLEMENTED =70 "The new class version has different modifiers and " ! "canUnrestrictedlyRedefineClasses is false.") (Constant METHOD_MODIFIERS_CHANGE_NOT_IMPLEMENTED =71 "A method in the new class version has " "different modifiers " "than its counterpart in the old class version and " ! "canUnrestrictedlyRedefineClasses is false.") ! (Constant CLASS_ATTRIBUTE_CHANGE_NOT_IMPLEMENTED ! =72 "The new class version has different NestHost or " ! "NestMembers class attribute and " ! "canUnrestrictedlyRedefineClasses is false.") (Constant NOT_IMPLEMENTED =99 "The functionality is not implemented in " "this virtual machine.") (Constant NULL_POINTER =100 "Invalid pointer.") (Constant ABSENT_INFORMATION =101 "Desired information is not available.") (Constant INVALID_EVENT_TYPE =102 "The specified event type id is not recognized.")
< prev index next >