CloneSet1432


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
12310.996class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11234
plugins/org.eclipse.jdt.apt.core/src/org/eclipse/jdt/apt/core/internal/util/SourcePositionImpl.java
21248
plugins/org.eclipse.jdt.apt.core/src/org/eclipse/jdt/apt/core/internal/util/SourcePositionImpl.java
31262
plugins/org.eclipse.jdt.apt.core/src/org/eclipse/jdt/apt/core/internal/util/SourcePositionImpl.java
Clone Instance
1
Line Count
12
Source Line
34
Source File
plugins/org.eclipse.jdt.apt.core/src/org/eclipse/jdt/apt/core/internal/util/SourcePositionImpl.java

    public SourcePositionImpl( final int startingOffset,
                               final int length,
                               final int line,
                               final int column,
                               final EclipseDeclarationImpl decl)
    {
        _startingOffset = startingOffset;
        _length = length;
        _line = line < 1 ? 1:  line;
        _column = column < 0 ? 0:  column;
        _decl = decl;
        assert decl != null:  "missing declaration [decl] == null."; //$NON-NLS-1$
    }


Clone Instance
2
Line Count
12
Source Line
48
Source File
plugins/org.eclipse.jdt.apt.core/src/org/eclipse/jdt/apt/core/internal/util/SourcePositionImpl.java

        public SourcePositionImpl( final int startingOffset,
                                                           final int length,
                                                           final int line,
                                                           final int column,
                                                           final AnnotationValueImpl decl)
        {
                _startingOffset = startingOffset;
        _length = length;
        _line = line < 1 ? 1:  line;
        _column = column < 0 ? 0:  column;
        _decl = decl;
        assert decl != null:  "missing declaration [decl] == null."; //$NON-NLS-1$
        }


Clone Instance
3
Line Count
12
Source Line
62
Source File
plugins/org.eclipse.jdt.apt.core/src/org/eclipse/jdt/apt/core/internal/util/SourcePositionImpl.java

        public SourcePositionImpl( final int startingOffset,
                                                           final int length,
                                                           final int line,
                                                           final int column,
                                                           final AnnotationMirrorImpl decl)
        {
                _startingOffset = startingOffset;
        _length = length;
        _line = line < 1 ? 1:  line;
        _column = column < 0 ? 0:  column;
        _decl = decl;
        assert decl != null:  "missing declaration [decl] == null."; //$NON-NLS-1$
        }


Clone AbstractionParameter Count: 1Parameter Bindings

public SourcePositionImpl( final int startingOffset, final int length, final int line, final int column, final [[#variableb486e840]] decl) {
  _startingOffset = startingOffset;
  _length = length;
  _line = line < 1 ? 1: line;
  _column = column < 0 ? 0: column;
  _decl = decl;
  assert decl != null: "missing declaration [decl] == null."; //$NON-NLS-1$
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#b486e840]]
EclipseDeclarationImpl 
12[[#b486e840]]
AnnotationValueImpl 
13[[#b486e840]]
AnnotationMirrorImpl