CloneSet5827


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
10230.976class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
110123
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsViewer.java
210145
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsViewer.java
Clone Instance
1
Line Count
10
Source Line
123
Source File
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsViewer.java

        /**
         * Show inherited methods
         */
        public void showInheritedMethods(boolean on) {
                if (on == isShowInheritedMethods()) {
                        return;
                }
                try {
                        getTable().setRedraw(false);
                        showInheritedMethodsNoRedraw(on);
                        refresh();
                } finally {
                        getTable().setRedraw(true);
                  }
        }


Clone Instance
2
Line Count
10
Source Line
145
Source File
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsViewer.java

        /**
         * Show the name of the defining type
         */
        public void sortByDefiningType(boolean on) {
                if (on == isShowDefiningTypes()) {
                        return;
                }
                try {
                        getTable().setRedraw(false);
                        sortByDefiningTypeNoRedraw(on);
                        refresh();
                } finally {
                        getTable().setRedraw(true);
                  }
        }


Clone AbstractionParameter Count: 3Parameter Bindings

/**
         * Show inherited methods
         */
/**
         * Show the name of the defining type
         */
public void [[#variable90063e20]](boolean on) {
  if (on == [[#variable90063da0]]()) {
    return;
  }
  try {
    getTable().setRedraw(false);
     [[#variable90063d00]](on);
    refresh();
  }
  finally {
    getTable().setRedraw(true);
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#90063e20]]
showInheritedMethods 
12[[#90063e20]]
sortByDefiningType 
21[[#90063da0]]
isShowInheritedMethods 
22[[#90063da0]]
isShowDefiningTypes 
31[[#90063d00]]
showInheritedMethodsNoRedraw 
32[[#90063d00]]
sortByDefiningTypeNoRedraw