CloneSet6917


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
10310.986class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11038
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaElementHyperlinkDetector.java
21146
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/NLSKeyHyperlinkDetector.java
31149
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/propertiesfileeditor/PropertyKeyHyperlinkDetector.java
Clone Instance
1
Line Count
10
Source Line
38
Source File
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaElementHyperlinkDetector.java

        private ITextEditor fTextEditor;

        /**
         * Creates a new Java element hyperlink detector.
         *
         * @param editor the editor in which to detect the hyperlink
         */
        public JavaElementHyperlinkDetector(ITextEditor editor) {
                Assert.isNotNull(editor);
                fTextEditor = editor;
        }


Clone Instance
2
Line Count
11
Source Line
46
Source File
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/NLSKeyHyperlinkDetector.java

        private ITextEditor fTextEditor;


        /**
         * Creates a new NLS hyperlink detector.
         *
         * @param editor the editor in which to detect the hyperlink
         */
        public NLSKeyHyperlinkDetector(ITextEditor editor) {
                Assert.isNotNull(editor);
                fTextEditor = editor;
        }


Clone Instance
3
Line Count
11
Source Line
49
Source File
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/propertiesfileeditor/PropertyKeyHyperlinkDetector.java

        private ITextEditor fTextEditor;


        /**
         * Creates a new Properties key hyperlink detector.
         *
         * @param editor the editor in which to detect the hyperlink
         */
        public PropertyKeyHyperlinkDetector(ITextEditor editor) {
                Assert.isNotNull(editor);
                fTextEditor = editor;
        }


Clone AbstractionParameter Count: 1Parameter Bindings

private ITextEditor fTextEditor;

/**
         * Creates a new Java element hyperlink detector.
         *
         * @param editor the editor in which to detect the hyperlink
         */
/**
         * Creates a new NLS hyperlink detector.
         *
         * @param editor the editor in which to detect the hyperlink
         */
/**
         * Creates a new Properties key hyperlink detector.
         *
         * @param editor the editor in which to detect the hyperlink
         */
public [[#variable53f19680]](ITextEditor editor) {
  Assert.isNotNull(editor);
  fTextEditor = editor;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#53f19680]]
JavaElementHyperlinkDetector 
12[[#53f19680]]
NLSKeyHyperlinkDetector 
13[[#53f19680]]
PropertyKeyHyperlinkDetector