CloneSet3506


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
34230.981class_body_declarations[6]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13425
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDINullValue.java
23425
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIVoidValue.java
Clone Instance
1
Line Count
34
Source Line
25
Source File
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDINullValue.java

        public JDINullValue(JDIDebugTarget target) {
                super(target, null);
        }

        protected List getVariablesList() {
                return Collections.EMPTY_LIST;
        }

        /**
         * @see IValue#getReferenceTypeName()
         */
        public String getReferenceTypeName() {
                return "null"; //$NON-NLS-1$
        }

        /**
         * @see IValue#getValueString()
         */
        public String getValueString() {
                return "null"; //$NON-NLS-1$
        }

        /**
         * @see IJavaValue#getSignature()
         */
        public String getSignature() {
                return null;
        }

        /**
         * @see IJavaValue#getArrayLength()
         */
        public int getArrayLength() {
                return -1;
        }


Clone Instance
2
Line Count
34
Source Line
25
Source File
plugins/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIVoidValue.java

        public JDIVoidValue(JDIDebugTarget target) {
                super(target, null);
        }

        protected List getVariablesList() {
                return Collections.EMPTY_LIST;
        }

        /**
         * @see IValue#getReferenceTypeName()
         */
        public String getReferenceTypeName() {
                return "void"; //$NON-NLS-1$
        }

        /**
         * @see IValue#getValueString()
         */
        public String getValueString() {
                return "null"; //$NON-NLS-1$
        }

        /**
         * @see IJavaValue#getSignature()
         */
        public String getSignature() {
                return "V"; //$NON-NLS-1$
        }

        /**
         * @see IJavaValue#getArrayLength()
         */
        public int getArrayLength() {
                return -1;
        }


Clone AbstractionParameter Count: 3Parameter Bindings

public [[#variablebc258f40]](JDIDebugTarget target) {
  super(target, null);
}

protected List getVariablesList() {
  return Collections.EMPTY_LIST;
}

/**
         * @see IValue#getReferenceTypeName()
         */
public String getReferenceTypeName() {
  return [[#variablebc259b00]]; //$NON-NLS-1$
}

/**
         * @see IValue#getValueString()
         */
public String getValueString() {
  return "null"; //$NON-NLS-1$
}

/**
         * @see IJavaValue#getSignature()
         */
public String getSignature() {
  return [[#variablebc259bc0]]; //$NON-NLS-1$
}

/**
         * @see IJavaValue#getArrayLength()
         */
public int getArrayLength() {
  return -1;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#bc258f40]]
JDINullValue 
12[[#bc258f40]]
JDIVoidValue 
21[[#bc259b00]]
"null" 
22[[#bc259b00]]
"void" 
31[[#bc259bc0]]
null 
32[[#bc259bc0]]
"V"