CloneSet397


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4210.957method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
14454
E:/TSE/Projects-CloneDR/jEdit-4.2/src/gnu/regexp/RESyntax.java
24466
E:/TSE/Projects-CloneDR/jEdit-4.2/src/gnu/regexp/RESyntax.java
Next
Last
Clone Instance
1
Line Count
4
Source Line
454
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/src/gnu/regexp/RESyntax.java

/**
 * Set a given bit in this syntax. 
 *
 * @param index the constant (RESyntax.RE_xxx) bit to set.
 * @return a reference to this object for easy chaining.
 */
public RESyntax set(int index) {
  if (isFinal)
    throw new IllegalAccessError(SYNTAX_IS_FINAL);
  bits.set(index);
  return this ;
}


First
Previous
Clone Instance
2
Line Count
4
Source Line
466
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/src/gnu/regexp/RESyntax.java

/**
 * Clear a given bit in this syntax. 
 *
 * @param index the constant (RESyntax.RE_xxx) bit to clear.
 * @return a reference to this object for easy chaining.
 */
public RESyntax clear(int index) {
  if (isFinal)
    throw new IllegalAccessError(SYNTAX_IS_FINAL);
  bits.clear(index);
  return this ;
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
   * Clear a given bit in this syntax. 
   *
   * @param index the constant (RESyntax.RE_xxx) bit to clear.
   * @return a reference to this object for easy chaining.
   */
/**
   * Set a given bit in this syntax. 
   *
   * @param index the constant (RESyntax.RE_xxx) bit to set.
   * @return a reference to this object for easy chaining.
   */
public RESyntax  [[#variablec288340]](int index) {
  if (isFinal)
    throw new IllegalAccessError(SYNTAX_IS_FINAL);
  bits. [[#variablec288340]](index);
  return this ;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#c288340]]
set 
12[[#c288340]]
clear