CloneSet680


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
17210.991class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11888
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/block/ColumnArrangement.java
21790
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/block/FlowArrangement.java
Next
Last
Clone Instance
1
Line Count
18
Source Line
88
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/block/ColumnArrangement.java

/**
 * Creates a new instance.
 * 
 * @param hAlign  the horizontal alignment (currently ignored).
 * @param vAlign  the vertical alignment (currently ignored).
 * @param hGap  the horizontal gap.
 * @param vGap  the vertical gap.
 */
public ColumnArrangement(HorizontalAlignment hAlign, VerticalAlignment vAlign, double hGap, double vGap) {
  this.horizontalAlignment = hAlign;
  this.verticalAlignment = vAlign;
  this.horizontalGap = hGap;
  this.verticalGap = vGap;
}

/**
 * Adds a block to be managed by this instance.  This method is usually 
 * called by the {@link BlockContainer}, you shouldn't need to call it 
 * directly.
 * 
 * @param block  the block.
 * @param key  a key that controls the position of the block.
 */
public void add(Block block, Object key) {
// since the flow layout is relatively straightforward, no information
// needs to be recorded here
}


First
Previous
Clone Instance
2
Line Count
17
Source Line
90
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/block/FlowArrangement.java

/**
 * Creates a new instance.
 * 
 * @param hAlign  the horizontal alignment (currently ignored).
 * @param vAlign  the vertical alignment (currently ignored).
 * @param hGap  the horizontal gap.
 * @param vGap  the vertical gap.
 */
public FlowArrangement(HorizontalAlignment hAlign, VerticalAlignment vAlign, double hGap, double vGap) {
  this.horizontalAlignment = hAlign;
  this.verticalAlignment = vAlign;
  this.horizontalGap = hGap;
  this.verticalGap = vGap;
}

/**
 * Adds a block to be managed by this instance.  This method is usually 
 * called by the {@link BlockContainer}, you shouldn't need to call it 
 * directly.
 * 
 * @param block  the block.
 * @param key  a key that controls the position of the block.
 */
public void add(Block block, Object key) {
// since the flow layout is relatively straightforward, 
// no information needs to be recorded here
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Creates a new instance.
     * 
     * @param hAlign  the horizontal alignment (currently ignored).
     * @param vAlign  the vertical alignment (currently ignored).
     * @param hGap  the horizontal gap.
     * @param vGap  the vertical gap.
     */
public [[#variable18cec120]](HorizontalAlignment hAlign, VerticalAlignment vAlign, double hGap, double vGap) {
  this.horizontalAlignment = hAlign;
  this.verticalAlignment = vAlign;
  this.horizontalGap = hGap;
  this.verticalGap = vGap;
}

/**
     * Adds a block to be managed by this instance.  This method is usually 
     * called by the {@link BlockContainer}, you shouldn't need to call it 
     * directly.
     * 
     * @param block  the block.
     * @param key  a key that controls the position of the block.
     */
public void add(Block block, Object key) {
// since the flow layout is relatively straightforward, 
// no information needs to be recorded here
// since the flow layout is relatively straightforward, no information
// needs to be recorded here
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18cec120]]
ColumnArrangement 
12[[#18cec120]]
FlowArrangement