CloneSet29


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
104260.998class_body_declarations[86]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
110427
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/jdwp/JdwpCommandPacket.java
210429
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/spy/JdwpCommandPacket.java
Clone Instance
1
Line Count
104
Source Line
27
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/jdwp/JdwpCommandPacket.java

        /** Command Sets. */
        public static final int CSET_VIRTUAL_MACHINE = 1;

        public static final int CSET_REFERENCE_TYPE = 2;

        public static final int CSET_CLASS_TYPE = 3;

        public static final int CSET_ARRAY_TYPE = 4;

        public static final int CSET_INTERFACE_TYPE = 5;

        public static final int CSET_METHOD = 6;

        public static final int CSET_FIELD = 8;

        public static final int CSET_OBJECT_REFERENCE = 9;

        public static final int CSET_STRING_REFERENCE = 10;

        public static final int CSET_THREAD_REFERENCE = 11;

        public static final int CSET_THREAD_GROUP_REFERENCE = 12;

        public static final int CSET_ARRAY_REFERENCE = 13;

        public static final int CSET_CLASS_LOADER_REFERENCE = 14;

        public static final int CSET_EVENT_REQUEST = 15;

        public static final int CSET_STACK_FRAME = 16;

        public static final int CSET_CLASS_OBJECT_REFERENCE = 17;

        public static final int CSET_EVENT = 64;

        public static final int CSET_HOT_CODE_REPLACEMENT = 128;

        /** Commands VirtualMachine. */
        public static final int VM_VERSION = 1 +                                           (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_CLASSES_BY_SIGNATURE = 2 +                      (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_ALL_CLASSES = 3 +                                       (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_ALL_THREADS = 4 +                                       (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_TOP_LEVEL_THREAD_GROUPS = 5 +           (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_DISPOSE = 6 +                                           (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_ID_SIZES = 7 +                                          (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_SUSPEND = 8 +                                           (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_RESUME = 9 +                                            (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_EXIT = 10 +                                             (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_CREATE_STRING = 11 +                            (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_CAPABILITIES = 12 +                             (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_CLASS_PATHS = 13 +                                      (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_DISPOSE_OBJECTS = 14 +                          (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_HOLD_EVENTS = 15 +                                      (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_RELEASE_EVENTS = 16 +                           (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_CAPABILITIES_NEW = 17 +                         (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_REDEFINE_CLASSES = 18 +                         (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_SET_DEFAULT_STRATUM = 19 +                      (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_ALL_CLASSES_WITH_GENERIC = 20 +          (CSET_VIRTUAL_MACHINE << 8);

        /** Commands ReferenceType. */
        public static final int RT_SIGNATURE = 1 +                                         (CSET_REFERENCE_TYPE << 8);

        public static final int RT_CLASS_LOADER = 2 +                                      (CSET_REFERENCE_TYPE << 8);

        public static final int RT_MODIFIERS = 3 +                                         (CSET_REFERENCE_TYPE << 8);

        public static final int RT_FIELDS = 4 +                                            (CSET_REFERENCE_TYPE << 8);

        public static final int RT_METHODS = 5 +                                           (CSET_REFERENCE_TYPE << 8);

        public static final int RT_GET_VALUES = 6 +                                        (CSET_REFERENCE_TYPE << 8);

        public static final int RT_SOURCE_FILE = 7 +                                       (CSET_REFERENCE_TYPE << 8);

        public static final int RT_NESTED_TYPES = 8 +                                      (CSET_REFERENCE_TYPE << 8);

        public static final int RT_STATUS = 9 +                                            (CSET_REFERENCE_TYPE << 8);

        public static final int RT_INTERFACES = 10 +                                       (CSET_REFERENCE_TYPE << 8);

        public static final int RT_CLASS_OBJECT = 11 +                             (CSET_REFERENCE_TYPE << 8);

        public static final int RT_SOURCE_DEBUG_EXTENSION = 12 +           (CSET_REFERENCE_TYPE << 8);

        public static final int RT_SIGNATURE_WITH_GENERIC = 13 +           (CSET_REFERENCE_TYPE << 8);

        public static final int RT_FIELDS_WITH_GENERIC = 14 +                      (CSET_REFERENCE_TYPE << 8);

        public static final int RT_METHODS_WITH_GENERIC = 15 +             (CSET_REFERENCE_TYPE << 8);

        /** Commands ClassType. */
        public static final int CT_SUPERCLASS = 1 +                                        (CSET_CLASS_TYPE << 8);

        public static final int CT_SET_VALUES = 2 +                                        (CSET_CLASS_TYPE << 8);

        public static final int CT_INVOKE_METHOD = 3 +                             (CSET_CLASS_TYPE << 8);

        public static final int CT_NEW_INSTANCE = 4 +                                      (CSET_CLASS_TYPE << 8);

        /** Commands ArrayType. */
        public static final int AT_NEW_INSTANCE = 1 +                                      (CSET_ARRAY_TYPE << 8);

        /** Commands Method. */
        public static final int M_LINE_TABLE = 1 +                                         (CSET_METHOD << 8);

        public static final int M_VARIABLE_TABLE = 2 +                             (CSET_METHOD << 8);

        public static final int M_BYTECODES = 3 +                                          (CSET_METHOD << 8);

        public static final int M_OBSOLETE = 4 +                                           (CSET_METHOD << 8);

        public static final int M_VARIABLE_TABLE_WITH_GENERIC = 5 +        (CSET_METHOD << 8);

        /** Commands ObjectReference. */
        public static final int OR_REFERENCE_TYPE = 1 +                            (CSET_OBJECT_REFERENCE << 8);

        public static final int OR_GET_VALUES = 2 +                                        (CSET_OBJECT_REFERENCE << 8);

        public static final int OR_SET_VALUES = 3 +                                        (CSET_OBJECT_REFERENCE << 8);

        public static final int OR_MONITOR_INFO = 5 +                                      (CSET_OBJECT_REFERENCE << 8);

        public static final int OR_INVOKE_METHOD = 6 +                             (CSET_OBJECT_REFERENCE << 8);

        public static final int OR_DISABLE_COLLECTION = 7 +                        (CSET_OBJECT_REFERENCE << 8);

        public static final int OR_ENABLE_COLLECTION = 8 +                         (CSET_OBJECT_REFERENCE << 8);

        public static final int OR_IS_COLLECTED = 9 +                                      (CSET_OBJECT_REFERENCE << 8);

        /** Commands StringReference. */
        public static final int SR_VALUE = 1 +                                             (CSET_STRING_REFERENCE << 8);

        /** Commands ThreadReference. */
        public static final int TR_NAME = 1 +                                                      (CSET_THREAD_REFERENCE << 8);

        public static final int TR_SUSPEND = 2 +                                           (CSET_THREAD_REFERENCE << 8);

        public static final int TR_RESUME = 3 +                                            (CSET_THREAD_REFERENCE << 8);

        public static final int TR_STATUS = 4 +                                            (CSET_THREAD_REFERENCE << 8);

        public static final int TR_THREAD_GROUP = 5 +                                      (CSET_THREAD_REFERENCE << 8);

        public static final int TR_FRAMES = 6 +                                            (CSET_THREAD_REFERENCE << 8);

        public static final int TR_FRAME_COUNT = 7 +                                       (CSET_THREAD_REFERENCE << 8);

        public static final int TR_OWNED_MONITORS = 8 +                            (CSET_THREAD_REFERENCE << 8);

        public static final int TR_CURRENT_CONTENDED_MONITOR = 9 +         (CSET_THREAD_REFERENCE << 8);

        public static final int TR_STOP = 10 +                                             (CSET_THREAD_REFERENCE << 8);

        public static final int TR_INTERRUPT = 11 +                                        (CSET_THREAD_REFERENCE << 8);

        public static final int TR_SUSPEND_COUNT = 12 +                            (CSET_THREAD_REFERENCE << 8);

        /** Commands ThreadGroupReference. */
        public static final int TGR_NAME = 1 +                                             (CSET_THREAD_GROUP_REFERENCE << 8);

        public static final int TGR_PARENT = 2 +                                           (CSET_THREAD_GROUP_REFERENCE << 8);


Clone Instance
2
Line Count
104
Source Line
29
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/spy/JdwpCommandPacket.java

        /** Command Sets. */
        public static final int CSET_VIRTUAL_MACHINE = 1;

        public static final int CSET_REFERENCE_TYPE = 2;

        public static final int CSET_CLASS_TYPE = 3;

        public static final int CSET_ARRAY_TYPE = 4;

        public static final int CSET_INTERFACE_TYPE = 5;

        public static final int CSET_METHOD = 6;

        public static final int CSET_FIELD = 8;

        public static final int CSET_OBJECT_REFERENCE = 9;

        public static final int CSET_STRING_REFERENCE = 10;

        public static final int CSET_THREAD_REFERENCE = 11;

        public static final int CSET_THREAD_GROUP_REFERENCE = 12;

        public static final int CSET_ARRAY_REFERENCE = 13;

        public static final int CSET_CLASS_LOADER_REFERENCE = 14;

        public static final int CSET_EVENT_REQUEST = 15;

        public static final int CSET_STACK_FRAME = 16;

        public static final int CSET_CLASS_OBJECT_REFERENCE = 17;

        public static final int CSET_EVENT = 64;

        public static final int CSET_HOT_CODE_REPLACEMENT = 128;

        /** Commands VirtualMachine. */
        public static final int VM_VERSION = 1 +                                           (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_CLASSES_BY_SIGNATURE = 2 +                      (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_ALL_CLASSES = 3 +                                       (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_ALL_THREADS = 4 +                                       (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_TOP_LEVEL_THREAD_GROUPS = 5 +           (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_DISPOSE = 6 +                                           (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_ID_SIZES = 7 +                                          (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_SUSPEND = 8 +                                           (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_RESUME = 9 +                                            (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_EXIT = 10 +                                             (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_CREATE_STRING = 11 +                            (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_CAPABILITIES = 12 +                             (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_CLASS_PATHS = 13 +                                      (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_DISPOSE_OBJECTS = 14 +                          (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_HOLD_EVENTS = 15 +                                      (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_RELEASE_EVENTS = 16 +                           (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_CAPABILITIES_NEW = 17 +                         (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_REDEFINE_CLASSES = 18 +                         (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_SET_DEFAULT_STRATUM = 19 +                      (CSET_VIRTUAL_MACHINE << 8);

        public static final int VM_ALL_CLASSES_WITH_GENERIC = 20 +          (CSET_VIRTUAL_MACHINE << 8);

        /** Commands ReferenceType. */
        public static final int RT_SIGNATURE = 1 +                                         (CSET_REFERENCE_TYPE << 8);

        public static final int RT_CLASS_LOADER = 2 +                                      (CSET_REFERENCE_TYPE << 8);

        public static final int RT_MODIFIERS = 3 +                                         (CSET_REFERENCE_TYPE << 8);

        public static final int RT_FIELDS = 4 +                                            (CSET_REFERENCE_TYPE << 8);

        public static final int RT_METHODS = 5 +                                           (CSET_REFERENCE_TYPE << 8);

        public static final int RT_GET_VALUES = 6 +                                        (CSET_REFERENCE_TYPE << 8);

        public static final int RT_SOURCE_FILE = 7 +                                       (CSET_REFERENCE_TYPE << 8);

        public static final int RT_NESTED_TYPES = 8 +                                      (CSET_REFERENCE_TYPE << 8);

        public static final int RT_STATUS = 9 +                                            (CSET_REFERENCE_TYPE << 8);

        public static final int RT_INTERFACES = 10 +                                       (CSET_REFERENCE_TYPE << 8);

        public static final int RT_CLASS_OBJECT = 11 +                             (CSET_REFERENCE_TYPE << 8);

        public static final int RT_SOURCE_DEBUG_EXTENSION = 12 +           (CSET_REFERENCE_TYPE << 8);

        public static final int RT_SIGNATURE_WITH_GENERIC = 13 +           (CSET_REFERENCE_TYPE << 8);

        public static final int RT_FIELDS_WITH_GENERIC = 14 +                      (CSET_REFERENCE_TYPE << 8);

        public static final int RT_METHODS_WITH_GENERIC = 15 +             (CSET_REFERENCE_TYPE << 8);

        /** Commands ClassType. */
        public static final int CT_SUPERCLASS = 1 +                                        (CSET_CLASS_TYPE << 8);

        public static final int CT_SET_VALUES = 2 +                                        (CSET_CLASS_TYPE << 8);

        public static final int CT_INVOKE_METHOD = 3 +                             (CSET_CLASS_TYPE << 8);

        public static final int CT_NEW_INSTANCE = 4 +                                      (CSET_CLASS_TYPE << 8);

        /** Commands ArrayType. */
        public static final int AT_NEW_INSTANCE = 1 +                                      (CSET_ARRAY_TYPE << 8);

        /** Commands Method. */
        public static final int M_LINE_TABLE = 1 +                                         (CSET_METHOD << 8);

        public static final int M_VARIABLE_TABLE = 2 +                             (CSET_METHOD << 8);

        public static final int M_BYTECODES = 3 +                                          (CSET_METHOD << 8);

        public static final int M_IS_OBSOLETE = 4 +                                        (CSET_METHOD << 8);

        public static final int M_VARIABLE_TABLE_WITH_GENERIC = 5 +        (CSET_METHOD << 8);

        /** Commands ObjectReference. */
        public static final int OR_REFERENCE_TYPE = 1 +                            (CSET_OBJECT_REFERENCE << 8);

        public static final int OR_GET_VALUES = 2 +                                        (CSET_OBJECT_REFERENCE << 8);

        public static final int OR_SET_VALUES = 3 +                                        (CSET_OBJECT_REFERENCE << 8);

        public static final int OR_MONITOR_INFO = 5 +                                      (CSET_OBJECT_REFERENCE << 8);

        public static final int OR_INVOKE_METHOD = 6 +                             (CSET_OBJECT_REFERENCE << 8);

        public static final int OR_DISABLE_COLLECTION = 7 +                        (CSET_OBJECT_REFERENCE << 8);

        public static final int OR_ENABLE_COLLECTION = 8 +                         (CSET_OBJECT_REFERENCE << 8);

        public static final int OR_IS_COLLECTED = 9 +                                      (CSET_OBJECT_REFERENCE << 8);

        /** Commands StringReference. */
        public static final int SR_VALUE = 1 +                                             (CSET_STRING_REFERENCE << 8);

        /** Commands ThreadReference. */
        public static final int TR_NAME = 1 +                                                      (CSET_THREAD_REFERENCE << 8);

        public static final int TR_SUSPEND = 2 +                                           (CSET_THREAD_REFERENCE << 8);

        public static final int TR_RESUME = 3 +                                            (CSET_THREAD_REFERENCE << 8);

        public static final int TR_STATUS = 4 +                                            (CSET_THREAD_REFERENCE << 8);

        public static final int TR_THREAD_GROUP = 5 +                                      (CSET_THREAD_REFERENCE << 8);

        public static final int TR_FRAMES = 6 +                                            (CSET_THREAD_REFERENCE << 8);

        public static final int TR_FRAME_COUNT = 7 +                                       (CSET_THREAD_REFERENCE << 8);

        public static final int TR_OWNED_MONITORS = 8 +                            (CSET_THREAD_REFERENCE << 8);

        public static final int TR_CURRENT_CONTENDED_MONITOR = 9 +         (CSET_THREAD_REFERENCE << 8);

        public static final int TR_STOP = 10 +                                             (CSET_THREAD_REFERENCE << 8);

        public static final int TR_INTERRUPT = 11 +                                        (CSET_THREAD_REFERENCE << 8);

        public static final int TR_SUSPEND_COUNT = 12 +                            (CSET_THREAD_REFERENCE << 8);

        public static final int TR_POP_TOP_FRAME = 13 +                            (CSET_THREAD_REFERENCE << 8);

        /** Commands ThreadGroupReference. */
        public static final int TGR_NAME = 1 +                                             (CSET_THREAD_GROUP_REFERENCE << 8);


Clone AbstractionParameter Count: 6Parameter Bindings

/** Command Sets. */
public static final int CSET_VIRTUAL_MACHINE = 1;

public static final int CSET_REFERENCE_TYPE = 2;

public static final int CSET_CLASS_TYPE = 3;

public static final int CSET_ARRAY_TYPE = 4;

public static final int CSET_INTERFACE_TYPE = 5;

public static final int CSET_METHOD = 6;

public static final int CSET_FIELD = 8;

public static final int CSET_OBJECT_REFERENCE = 9;

public static final int CSET_STRING_REFERENCE = 10;

public static final int CSET_THREAD_REFERENCE = 11;

public static final int CSET_THREAD_GROUP_REFERENCE = 12;

public static final int CSET_ARRAY_REFERENCE = 13;

public static final int CSET_CLASS_LOADER_REFERENCE = 14;

public static final int CSET_EVENT_REQUEST = 15;

public static final int CSET_STACK_FRAME = 16;

public static final int CSET_CLASS_OBJECT_REFERENCE = 17;

public static final int CSET_EVENT = 64;

public static final int CSET_HOT_CODE_REPLACEMENT = 128;

/** Commands VirtualMachine. */
public static final int VM_VERSION = 1 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_CLASSES_BY_SIGNATURE = 2 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_ALL_CLASSES = 3 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_ALL_THREADS = 4 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_TOP_LEVEL_THREAD_GROUPS = 5 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_DISPOSE = 6 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_ID_SIZES = 7 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_SUSPEND = 8 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_RESUME = 9 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_EXIT = 10 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_CREATE_STRING = 11 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_CAPABILITIES = 12 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_CLASS_PATHS = 13 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_DISPOSE_OBJECTS = 14 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_HOLD_EVENTS = 15 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_RELEASE_EVENTS = 16 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_CAPABILITIES_NEW = 17 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_REDEFINE_CLASSES = 18 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_SET_DEFAULT_STRATUM = 19 + (CSET_VIRTUAL_MACHINE << 8);

public static final int VM_ALL_CLASSES_WITH_GENERIC = 20 + (CSET_VIRTUAL_MACHINE << 8);

/** Commands ReferenceType. */
public static final int RT_SIGNATURE = 1 + (CSET_REFERENCE_TYPE << 8);

public static final int RT_CLASS_LOADER = 2 + (CSET_REFERENCE_TYPE << 8);

public static final int RT_MODIFIERS = 3 + (CSET_REFERENCE_TYPE << 8);

public static final int RT_FIELDS = 4 + (CSET_REFERENCE_TYPE << 8);

public static final int RT_METHODS = 5 + (CSET_REFERENCE_TYPE << 8);

public static final int RT_GET_VALUES = 6 + (CSET_REFERENCE_TYPE << 8);

public static final int RT_SOURCE_FILE = 7 + (CSET_REFERENCE_TYPE << 8);

public static final int RT_NESTED_TYPES = 8 + (CSET_REFERENCE_TYPE << 8);

public static final int RT_STATUS = 9 + (CSET_REFERENCE_TYPE << 8);

public static final int RT_INTERFACES = 10 + (CSET_REFERENCE_TYPE << 8);

public static final int RT_CLASS_OBJECT = 11 + (CSET_REFERENCE_TYPE << 8);

public static final int RT_SOURCE_DEBUG_EXTENSION = 12 + (CSET_REFERENCE_TYPE << 8);

public static final int RT_SIGNATURE_WITH_GENERIC = 13 + (CSET_REFERENCE_TYPE << 8);

public static final int RT_FIELDS_WITH_GENERIC = 14 + (CSET_REFERENCE_TYPE << 8);

public static final int RT_METHODS_WITH_GENERIC = 15 + (CSET_REFERENCE_TYPE << 8);

/** Commands ClassType. */
public static final int CT_SUPERCLASS = 1 + (CSET_CLASS_TYPE << 8);

public static final int CT_SET_VALUES = 2 + (CSET_CLASS_TYPE << 8);

public static final int CT_INVOKE_METHOD = 3 + (CSET_CLASS_TYPE << 8);

public static final int CT_NEW_INSTANCE = 4 + (CSET_CLASS_TYPE << 8);

/** Commands ArrayType. */
public static final int AT_NEW_INSTANCE = 1 + (CSET_ARRAY_TYPE << 8);

/** Commands Method. */
public static final int M_LINE_TABLE = 1 + (CSET_METHOD << 8);

public static final int M_VARIABLE_TABLE = 2 + (CSET_METHOD << 8);

public static final int M_BYTECODES = 3 + (CSET_METHOD << 8);

public static final int  [[#variableb3193dc0]]= 4 + (CSET_METHOD << 8);

public static final int M_VARIABLE_TABLE_WITH_GENERIC = 5 + (CSET_METHOD << 8);

/** Commands ObjectReference. */
public static final int OR_REFERENCE_TYPE = 1 + (CSET_OBJECT_REFERENCE << 8);

public static final int OR_GET_VALUES = 2 + (CSET_OBJECT_REFERENCE << 8);

public static final int OR_SET_VALUES = 3 + (CSET_OBJECT_REFERENCE << 8);

public static final int OR_MONITOR_INFO = 5 + (CSET_OBJECT_REFERENCE << 8);

public static final int OR_INVOKE_METHOD = 6 + (CSET_OBJECT_REFERENCE << 8);

public static final int OR_DISABLE_COLLECTION = 7 + (CSET_OBJECT_REFERENCE << 8);

public static final int OR_ENABLE_COLLECTION = 8 + (CSET_OBJECT_REFERENCE << 8);

public static final int OR_IS_COLLECTED = 9 + (CSET_OBJECT_REFERENCE << 8);

/** Commands StringReference. */
public static final int SR_VALUE = 1 + (CSET_STRING_REFERENCE << 8);

/** Commands ThreadReference. */
public static final int TR_NAME = 1 + (CSET_THREAD_REFERENCE << 8);

public static final int TR_SUSPEND = 2 + (CSET_THREAD_REFERENCE << 8);

public static final int TR_RESUME = 3 + (CSET_THREAD_REFERENCE << 8);

public static final int TR_STATUS = 4 + (CSET_THREAD_REFERENCE << 8);

public static final int TR_THREAD_GROUP = 5 + (CSET_THREAD_REFERENCE << 8);

public static final int TR_FRAMES = 6 + (CSET_THREAD_REFERENCE << 8);

public static final int TR_FRAME_COUNT = 7 + (CSET_THREAD_REFERENCE << 8);

public static final int TR_OWNED_MONITORS = 8 + (CSET_THREAD_REFERENCE << 8);

public static final int TR_CURRENT_CONTENDED_MONITOR = 9 + (CSET_THREAD_REFERENCE << 8);

public static final int TR_STOP = 10 + (CSET_THREAD_REFERENCE << 8);

public static final int TR_INTERRUPT = 11 + (CSET_THREAD_REFERENCE << 8);

public static final int TR_SUSPEND_COUNT = 12 + (CSET_THREAD_REFERENCE << 8);

/** Commands ThreadGroupReference. */
public static final int  [[#variableb3193d20]]= [[#variableb3193cc0]] + ( [[#variableb3193020]] << 8);

/** Commands ThreadGroupReference. */
public static final int  [[#variableb3193100]]= [[#variableb3193000]] + (CSET_THREAD_GROUP_REFERENCE << 8);
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#b3193dc0]]
M_OBSOLETE 
12[[#b3193dc0]]
M_IS_OBSOLETE 
21[[#b3193d20]]
TGR_NAME 
22[[#b3193d20]]
TR_POP_TOP_FRAME 
31[[#b3193cc0]]
1 
32[[#b3193cc0]]
13 
41[[#b3193020]]
CSET_THREAD_GROUP_REFERENCE 
42[[#b3193020]]
CSET_THREAD_REFERENCE 
51[[#b3193100]]
TGR_PARENT 
52[[#b3193100]]
TGR_NAME 
61[[#b3193000]]
2 
62[[#b3193000]]
1