CloneSet549


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4750.967class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1464
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ByteValueImpl.java
2464
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/CharValueImpl.java
3464
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/DoubleValueImpl.java
4464
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/FloatValueImpl.java
5464
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/IntegerValueImpl.java
6464
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/LongValueImpl.java
7464
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ShortValueImpl.java
Clone Instance
1
Line Count
4
Source Line
64
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ByteValueImpl.java

        /**
         * @return Reads and returns new instance.
         */
        public static ByteValueImpl read(MirrorImpl target, DataInputStream in) throws IOException {
                VirtualMachineImpl vmImpl = target.virtualMachineImpl();
                byte value = target.readByte("byteValue", in); //$NON-NLS-1$
                return new ByteValueImpl(vmImpl, new Byte(value));
        }


Clone Instance
2
Line Count
4
Source Line
64
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/CharValueImpl.java

        /**
         * @return Reads and returns new instance.
         */
        public static CharValueImpl read(MirrorImpl target, DataInputStream in) throws IOException {
                VirtualMachineImpl vmImpl = target.virtualMachineImpl();
                char value = target.readChar("charValue", in); //$NON-NLS-1$
                return new CharValueImpl(vmImpl, new Character(value));
        }


Clone Instance
3
Line Count
4
Source Line
64
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/DoubleValueImpl.java

        /**
         * @return Reads and returns new instance.
         */
        public static DoubleValueImpl read(MirrorImpl target, DataInputStream in) throws IOException {
                VirtualMachineImpl vmImpl = target.virtualMachineImpl();
                double value = target.readDouble("doubleValue", in); //$NON-NLS-1$
                return new DoubleValueImpl(vmImpl, new Double(value));
        }


Clone Instance
4
Line Count
4
Source Line
64
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/FloatValueImpl.java

        /**
         * @return Reads and returns new instance.
         */
        public static FloatValueImpl read(MirrorImpl target, DataInputStream in) throws IOException {
                VirtualMachineImpl vmImpl = target.virtualMachineImpl();
                float value = target.readFloat("floatValue", in); //$NON-NLS-1$
                return new FloatValueImpl(vmImpl, new Float(value));
        }


Clone Instance
5
Line Count
4
Source Line
64
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/IntegerValueImpl.java

        /**
         * @return Reads and returns new instance.
         */
        public static IntegerValueImpl read(MirrorImpl target, DataInputStream in) throws IOException {
                VirtualMachineImpl vmImpl = target.virtualMachineImpl();
                int value = target.readInt("integerValue", in); //$NON-NLS-1$
                return new IntegerValueImpl(vmImpl, new Integer(value));
        }


Clone Instance
6
Line Count
4
Source Line
64
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/LongValueImpl.java

        /**
         * @return Reads and returns new instance.
         */
        public static LongValueImpl read(MirrorImpl target, DataInputStream in) throws IOException {
                VirtualMachineImpl vmImpl = target.virtualMachineImpl();
                long value = target.readLong("longValue", in); //$NON-NLS-1$
                return new LongValueImpl(vmImpl, new Long(value));
        }


Clone Instance
7
Line Count
4
Source Line
64
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ShortValueImpl.java

        /**
         * @return Reads and returns new instance.
         */
        public static ShortValueImpl read(MirrorImpl target, DataInputStream in) throws IOException {
                VirtualMachineImpl vmImpl = target.virtualMachineImpl();
                short value = target.readShort("shortValue", in); //$NON-NLS-1$
                return new ShortValueImpl(vmImpl, new Short(value));
        }


Clone AbstractionParameter Count: 5Parameter Bindings

/**
         * @return Reads and returns new instance.
         */
public static [[#variablebc249100]] read(MirrorImpl target, DataInputStream in) throws IOException {
  VirtualMachineImpl vmImpl = target.virtualMachineImpl();
   [[#variablebc249040]] value = target. [[#variablebc248fe0]]( [[#variablebc248f80]], in); //$NON-NLS-1$
  return new [[#variablebc249100]](vmImpl, new [[#variablebc248c20]](value));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#bc249100]]
ShortValueImpl 
12[[#bc249100]]
LongValueImpl 
13[[#bc249100]]
IntegerValueImpl 
14[[#bc249100]]
FloatValueImpl 
15[[#bc249100]]
DoubleValueImpl 
16[[#bc249100]]
CharValueImpl 
17[[#bc249100]]
ByteValueImpl 
21[[#bc249040]]
short 
22[[#bc249040]]
long 
23[[#bc249040]]
int 
24[[#bc249040]]
float 
25[[#bc249040]]
double 
26[[#bc249040]]
char 
27[[#bc249040]]
byte 
31[[#bc248fe0]]
readShort 
32[[#bc248fe0]]
readLong 
33[[#bc248fe0]]
readInt 
34[[#bc248fe0]]
readFloat 
35[[#bc248fe0]]
readDouble 
36[[#bc248fe0]]
readChar 
37[[#bc248fe0]]
readByte 
41[[#bc248f80]]
"shortValue" 
42[[#bc248f80]]
"longValue" 
43[[#bc248f80]]
"integerValue" 
44[[#bc248f80]]
"floatValue" 
45[[#bc248f80]]
"doubleValue" 
46[[#bc248f80]]
"charValue" 
47[[#bc248f80]]
"byteValue" 
51[[#bc248c20]]
Short 
52[[#bc248c20]]
Long 
53[[#bc248c20]]
Integer 
54[[#bc248c20]]
Float 
55[[#bc248c20]]
Double 
56[[#bc248c20]]
Character 
57[[#bc248c20]]
Byte