CloneSet163


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5230.963constructor_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1555
E:/TSE/Projects-CloneDR/jEdit-4.2/src/gnu/regexp/REFilterInputStream.java
2552
E:/TSE/Projects-CloneDR/jEdit-4.2/src/gnu/regexp/REFilterReader.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
55
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/src/gnu/regexp/REFilterInputStream.java

/**
 * Creates an REFilterInputStream.  When reading from this stream,
 * occurrences of patterns matching the supplied regular expression
 * will be replaced with the supplied replacement text (the
 * metacharacters $0 through $9 may be used to refer to the full
 * match or subexpression matches).
 *
 * @param stream The InputStream to be filtered.
 * @param expr The regular expression to search for.
 * @param replace The text pattern to replace matches with.  
 */
public REFilterInputStream(InputStream stream, RE expr, String replace) {
  super(stream);
  this.stream = new CharIndexedInputStream(stream, 0);
  this.expr = expr;
  this.replace = replace;
}


First
Previous
Clone Instance
2
Line Count
5
Source Line
52
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/src/gnu/regexp/REFilterReader.java

/**
 * Creates an REFilterReader.  When reading from this stream,
 * occurrences of patterns matching the supplied regular expression
 * will be replaced with the supplied replacement text (the
 * metacharacters $0 through $9 may be used to refer to the full
 * match or subexpression matches.
 *
 * @param stream The Reader to be filtered.
 * @param expr The regular expression to search for.
 * @param replace The text pattern to replace matches with.  
 */
public REFilterReader(Reader stream, RE expr, String replace) {
  super(stream);
  this.stream = new CharIndexedReader(stream, 0);
  this.expr = expr;
  this.replace = replace;
}


Clone AbstractionParameter Count: 3Parameter Bindings

/**
   * Creates an REFilterInputStream.  When reading from this stream,
   * occurrences of patterns matching the supplied regular expression
   * will be replaced with the supplied replacement text (the
   * metacharacters $0 through $9 may be used to refer to the full
   * match or subexpression matches).
   *
   * @param stream The InputStream to be filtered.
   * @param expr The regular expression to search for.
   * @param replace The text pattern to replace matches with.  
   */
/**
   * Creates an REFilterReader.  When reading from this stream,
   * occurrences of patterns matching the supplied regular expression
   * will be replaced with the supplied replacement text (the
   * metacharacters $0 through $9 may be used to refer to the full
   * match or subexpression matches.
   *
   * @param stream The Reader to be filtered.
   * @param expr The regular expression to search for.
   * @param replace The text pattern to replace matches with.  
   */
public [[#variableaef8b80]]( [[#variableaef8be0]] stream, RE expr, String replace) {
  super(stream);
  this.stream = new [[#variableaef8b20]](stream, 0);
  this.expr = expr;
  this.replace = replace;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#aef8b80]]
REFilterInputStream 
12[[#aef8b80]]
REFilterReader 
21[[#aef8be0]]
InputStream 
22[[#aef8be0]]
Reader 
31[[#aef8b20]]
CharIndexedInputStream 
32[[#aef8b20]]
CharIndexedReader