Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
8 | 2 | 4 | 0.973 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 8 | 1646 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/spy/VerbosePacketStream.java |
2 | 8 | 2100 | plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/spy/VerbosePacketStream.java |
| ||||
private void printRtNestedTypesReply(DataInputStream in) throws IOException, UnableToParseDataException { int typesCount = in.readInt(); println(TcpIpSpyMessages.VerbosePacketStream_Types_count__99, typesCount); for (int i = 0; i < typesCount; i++) { byte typeTag = in.readByte(); long typeId = readReferenceTypeID(in); printRefTypeTag(typeTag); printlnReferenceTypeId(TcpIpSpyMessages.VerbosePacketStream_Type_id__43, typeId); } } |
| ||||
private void printClrVisibleClassesReply(DataInputStream in) throws IOException, UnableToParseDataException { int classesCount = in.readInt(); println(TcpIpSpyMessages.VerbosePacketStream_Classes_count__42, classesCount); for (int i = 0; i < classesCount; i++) { byte refTypeTag = in.readByte(); long typeId = readReferenceTypeID(in); printRefTypeTag(refTypeTag); printlnReferenceTypeId(TcpIpSpyMessages.VerbosePacketStream_Type_id__43, typeId); } } |
| |||
private void [[#variableb0b54340]](DataInputStream in) throws IOException, UnableToParseDataException { int [[#variableb0b542c0]]= in.readInt(); println(TcpIpSpyMessages. [[#variableb0b54220]], [[#variableb0b542c0]]); for (int i = 0; i < [[#variableb0b542c0]]; i++) { byte [[#variableb0b54140]]= in.readByte(); long typeId = readReferenceTypeID(in); printRefTypeTag( [[#variableb0b54140]]); printlnReferenceTypeId(TcpIpSpyMessages.VerbosePacketStream_Type_id__43, typeId); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#b0b54340]] | printRtNestedTypesReply |
1 | 2 | [[#b0b54340]] | printClrVisibleClassesReply |
2 | 1 | [[#b0b542c0]] | typesCount |
2 | 2 | [[#b0b542c0]] | classesCount |
3 | 1 | [[#b0b54220]] | VerbosePacketStream_Types_count__99 |
3 | 2 | [[#b0b54220]] | VerbosePacketStream_Classes_count__42 |
4 | 1 | [[#b0b54140]] | typeTag |
4 | 2 | [[#b0b54140]] | refTypeTag |