CloneSet69


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
22620.951method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12312
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java
22442
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/HistogramDataset.java
32460
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/HistogramDataset.java
42391
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java
52416
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java
62806
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/DynamicTimeSeriesCollection.java
72818
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/DynamicTimeSeriesCollection.java
82325
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimePeriodValuesCollection.java
92337
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimePeriodValuesCollection.java
102516
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeSeriesCollection.java
112528
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeSeriesCollection.java
122443
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java
132455
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java
142243
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/CategoryTableXYDataset.java
152255
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/CategoryTableXYDataset.java
162179
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultHighLowDataset.java
172120
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultOHLCDataset.java
182331
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultTableXYDataset.java
192343
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultTableXYDataset.java
202237
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultWindDataset.java
212252
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XIntervalSeriesCollection.java
222265
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XIntervalSeriesCollection.java
232356
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYSeriesCollection.java
242368
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYSeriesCollection.java
252224
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java
262237
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java
Next
Last
Clone Instance
1
Line Count
2
Source Line
312
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java

/**
 * Returns the y-value for one item in a series.
 * <p>
 * This method (from the XYDataset interface) is mapped to the 
 * getMeanValue() method.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The y-value.
 */
public Number getY(int series, int item) {
  return getMeanValue(series, item);
}


Next
Previous
Clone Instance
2
Line Count
2
Source Line
442
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/HistogramDataset.java

/**
 * Returns the start y-value for a bin (which is the same as the y-value,
 * this method exists only to support the general form of the
 * {@link IntervalXYDataset} interface).
 *
 * @param series  the series index (in the range <code>0</code> to
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (zero based).
 *
 * @return The y-value.
 *
 * @throws IndexOutOfBoundsException if <code>series</code> is outside the
 *     specified range.
 */
public Number getStartY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
3
Line Count
2
Source Line
460
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/HistogramDataset.java

/**
 * Returns the end y-value for a bin (which is the same as the y-value,
 * this method exists only to support the general form of the
 * {@link IntervalXYDataset} interface).
 *
 * @param series  the series index (in the range <code>0</code> to
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (zero based).
 *
 * @return The Y value.
 *
 * @throws IndexOutOfBoundsException if <code>series</code> is outside the
 *     specified range.
 */
public Number getEndY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
4
Line Count
2
Source Line
391
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java

/**
 * Returns the starting Y value for the specified series and item.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The value.
 */
public Number getStartY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
5
Line Count
2
Source Line
416
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java

/**
 * Returns the ending Y value for the specified series and item.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The value.
 */
public Number getEndY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
6
Line Count
2
Source Line
806
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/DynamicTimeSeriesCollection.java

/**
 * Returns the start y-value.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The value.
 */
public Number getStartY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
7
Line Count
2
Source Line
818
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/DynamicTimeSeriesCollection.java

/**
 * Returns the end y-value.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The value.
 */
public Number getEndY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
8
Line Count
2
Source Line
325
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimePeriodValuesCollection.java

/**
 * Returns the starting Y value for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The starting Y value for the specified series and item.
 */
public Number getStartY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
9
Line Count
2
Source Line
337
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimePeriodValuesCollection.java

/**
 * Returns the ending Y value for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The ending Y value for the specified series and item.
 */
public Number getEndY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
10
Line Count
2
Source Line
516
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeSeriesCollection.java

/**
 * Returns the starting Y value for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The value (possibly <code>null</code>).
 */
public Number getStartY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
11
Line Count
2
Source Line
528
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeSeriesCollection.java

/**
 * Returns the ending Y value for the specified series and item.
 *
 * @param series  te series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The value (possibly <code>null</code>).
 */
public Number getEndY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
12
Line Count
2
Source Line
443
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java

/**
 * Returns the starting Y value for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item within a series (zero-based index).
 *
 * @return The starting Y value for the specified series and item.
 */
public Number getStartY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
13
Line Count
2
Source Line
455
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java

/**
 * Returns the ending Y value for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item within a series (zero-based index).
 *
 * @return The ending Y value for the specified series and item.
 */
public Number getEndY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
14
Line Count
2
Source Line
243
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/CategoryTableXYDataset.java

/**
 * Returns the starting Y value for the specified series and item.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The starting Y value.
 */
public Number getStartY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
15
Line Count
2
Source Line
255
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/CategoryTableXYDataset.java

/**
 * Returns the ending Y value for the specified series and item.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The ending Y value.
 */
public Number getEndY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
16
Line Count
2
Source Line
179
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultHighLowDataset.java

/**
 * Returns the y-value for one item in a series.
 * <p>
 * This method (from the {@link XYDataset} interface) is mapped to the
 * {@link #getCloseValue(int, int)} method.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The y-value.
 *
 * @see #getYValue(int, int)
 */
public Number getY(int series, int item) {
  return getClose(series, item);
}


Next
Previous
Clone Instance
17
Line Count
2
Source Line
120
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultOHLCDataset.java

/**
 * Returns the y-value.
 *
 * @param series  the series index (ignored).
 * @param item  the item index (zero-based).
 *
 * @return The y value.
 */
public Number getY(int series, int item) {
  return getClose(series, item);
}


Next
Previous
Clone Instance
18
Line Count
2
Source Line
331
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultTableXYDataset.java

/**
 * Returns the starting Y value for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The starting Y value.
 */
public Number getStartY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
19
Line Count
2
Source Line
343
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultTableXYDataset.java

/**
 * Returns the ending Y value for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The ending Y value.
 */
public Number getEndY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
20
Line Count
2
Source Line
237
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultWindDataset.java

/**
 * Returns the y-value for one item within a series.  This maps to the
 * {@link #getWindForce(int, int)} method and is implemented because
 * <code>WindDataset</code> is an extension of {@link XYDataset}.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The y-value for the item within the series.
 */
public Number getY(int series, int item) {
  return getWindForce(series, item);
}


Next
Previous
Clone Instance
21
Line Count
2
Source Line
252
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XIntervalSeriesCollection.java

/**
 * Returns the start y-value for an item within a series.  This method
 * maps directly to {@link #getY(int, int)}.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The start y-value.
 */
public Number getStartY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
22
Line Count
2
Source Line
265
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XIntervalSeriesCollection.java

/**
 * Returns the end y-value for an item within a series.  This method
 * maps directly to {@link #getY(int, int)}.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The end y-value.
 */
public Number getEndY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
23
Line Count
2
Source Line
356
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYSeriesCollection.java

/**
 * Returns the starting Y value for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The starting Y value.
 */
public Number getStartY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
24
Line Count
2
Source Line
368
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYSeriesCollection.java

/**
 * Returns the ending Y value for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The ending Y value.
 */
public Number getEndY(int series, int item) {
  return getY(series, item);
}


Next
Previous
Clone Instance
25
Line Count
2
Source Line
224
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java

/**
 * Returns the start x-value for an item within a series.  This method
 * maps directly to {@link #getX(int, int)}.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The x-value.
 */
public Number getStartX(int series, int item) {
  return getX(series, item);
}


First
Previous
Clone Instance
26
Line Count
2
Source Line
237
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java

/**
 * Returns the end x-value for an item within a series.  This method
 * maps directly to {@link #getX(int, int)}.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The x-value.
 */
public Number getEndX(int series, int item) {
  return getX(series, item);
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Returns the ending Y value for the specified series and item.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return The value.
     */
/**
     * Returns the start y-value for a bin (which is the same as the y-value,
     * this method exists only to support the general form of the
     * {@link IntervalXYDataset} interface).
     *
     * @param series  the series index (in the range <code>0</code> to
     *     <code>getSeriesCount() - 1</code>).
     * @param item  the item index (zero based).
     *
     * @return The y-value.
     *
     * @throws IndexOutOfBoundsException if <code>series</code> is outside the
     *     specified range.
     */
/**
     * Returns the end x-value for an item within a series.  This method
     * maps directly to {@link #getX(int, int)}.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The x-value.
     */
/**
     * Returns the start x-value for an item within a series.  This method
     * maps directly to {@link #getX(int, int)}.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The x-value.
     */
/**
     * Returns the y-value for one item within a series.  This maps to the
     * {@link #getWindForce(int, int)} method and is implemented because
     * <code>WindDataset</code> is an extension of {@link XYDataset}.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The y-value for the item within the series.
     */
/**
     * Returns the y-value.
     *
     * @param series  the series index (ignored).
     * @param item  the item index (zero-based).
     *
     * @return The y value.
     */
/**
     * Returns the y-value for one item in a series.
     * <p>
     * This method (from the XYDataset interface) is mapped to the 
     * getMeanValue() method.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The y-value.
     */
/**
     * Returns the start y-value.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return The value.
     */
/**
     * Returns the ending Y value for the specified series and item.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return The ending Y value.
     */
/**
     * Returns the ending Y value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The ending Y value.
     */
/**
     * Returns the starting Y value for the specified series and item.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return The starting Y value.
     */
/**
     * Returns the starting Y value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The starting Y value.
     */
/**
     * Returns the end y-value for a bin (which is the same as the y-value,
     * this method exists only to support the general form of the
     * {@link IntervalXYDataset} interface).
     *
     * @param series  the series index (in the range <code>0</code> to
     *     <code>getSeriesCount() - 1</code>).
     * @param item  the item index (zero based).
     *
     * @return The Y value.
     *
     * @throws IndexOutOfBoundsException if <code>series</code> is outside the
     *     specified range.
     */
/**
     * Returns the starting Y value for the specified series and item.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return The value.
     */
/**
     * Returns the ending Y value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item within a series (zero-based index).
     *
     * @return The ending Y value for the specified series and item.
     */
/**
     * Returns the starting Y value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item within a series (zero-based index).
     *
     * @return The starting Y value for the specified series and item.
     */
/**
     * Returns the ending Y value for the specified series and item.
     *
     * @param series  te series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The value (possibly <code>null</code>).
     */
/**
     * Returns the end y-value for an item within a series.  This method
     * maps directly to {@link #getY(int, int)}.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The end y-value.
     */
/**
     * Returns the starting Y value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The value (possibly <code>null</code>).
     */
/**
     * Returns the ending Y value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The ending Y value for the specified series and item.
     */
/**
     * Returns the end y-value.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return The value.
     */
/**
     * Returns the starting Y value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The starting Y value for the specified series and item.
     */
/**
     * Returns the y-value for one item in a series.
     * <p>
     * This method (from the {@link XYDataset} interface) is mapped to the
     * {@link #getCloseValue(int, int)} method.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The y-value.
     *
     * @see #getYValue(int, int)
     */
/**
     * Returns the start y-value for an item within a series.  This method
     * maps directly to {@link #getY(int, int)}.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The start y-value.
     */
public Number  [[#variable150bdde0]](int series, int item) {
  return [[#variable150b6ec0]](series, item);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#150bdde0]]
getY 
12[[#150bdde0]]
getStartY 
13[[#150bdde0]]
getEndY 
14[[#150bdde0]]
getStartY 
15[[#150bdde0]]
getEndY 
16[[#150bdde0]]
getStartY 
17[[#150bdde0]]
getEndY 
18[[#150bdde0]]
getStartY 
19[[#150bdde0]]
getEndY 
110[[#150bdde0]]
getStartY 
111[[#150bdde0]]
getEndY 
112[[#150bdde0]]
getStartY 
113[[#150bdde0]]
getEndY 
114[[#150bdde0]]
getStartY 
115[[#150bdde0]]
getEndY 
116[[#150bdde0]]
getY 
117[[#150bdde0]]
getY 
118[[#150bdde0]]
getStartY 
119[[#150bdde0]]
getEndY 
120[[#150bdde0]]
getY 
121[[#150bdde0]]
getStartY 
122[[#150bdde0]]
getEndY 
123[[#150bdde0]]
getStartY 
124[[#150bdde0]]
getEndY 
125[[#150bdde0]]
getStartX 
126[[#150bdde0]]
getEndX 
21[[#150b6ec0]]
getMeanValue 
22[[#150b6ec0]]
getY 
23[[#150b6ec0]]
getY 
24[[#150b6ec0]]
getY 
25[[#150b6ec0]]
getY 
26[[#150b6ec0]]
getY 
27[[#150b6ec0]]
getY 
28[[#150b6ec0]]
getY 
29[[#150b6ec0]]
getY 
210[[#150b6ec0]]
getY 
211[[#150b6ec0]]
getY 
212[[#150b6ec0]]
getY 
213[[#150b6ec0]]
getY 
214[[#150b6ec0]]
getY 
215[[#150b6ec0]]
getY 
216[[#150b6ec0]]
getClose 
217[[#150b6ec0]]
getClose 
218[[#150b6ec0]]
getY 
219[[#150b6ec0]]
getY 
220[[#150b6ec0]]
getWindForce 
221[[#150b6ec0]]
getY 
222[[#150b6ec0]]
getY 
223[[#150b6ec0]]
getY 
224[[#150b6ec0]]
getY 
225[[#150b6ec0]]
getX 
226[[#150b6ec0]]
getX