Java Code Examples for org.jfree.util.ObjectUtilities#deepClone()

The following examples show how to use org.jfree.util.ObjectUtilities#deepClone() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CombinedDomainXYPlot.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns a clone of the annotation.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException  this class will not throw this
 *         exception, but subclasses (if any) might.
 */
@Override
public Object clone() throws CloneNotSupportedException {

    CombinedDomainXYPlot result = (CombinedDomainXYPlot) super.clone();
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }

    // after setting up all the subplots, the shared domain axis may need
    // reconfiguring
    ValueAxis domainAxis = result.getDomainAxis();
    if (domainAxis != null) {
        domainAxis.configure();
    }

    return result;

}
 
Example 2
Source File: CombinedDomainXYPlot.java    From opensim-gui with Apache License 2.0 6 votes vote down vote up
/**
 * Returns a clone of the annotation.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException  this class will not throw this 
 *         exception, but subclasses (if any) might.
 */
public Object clone() throws CloneNotSupportedException {
    
    CombinedDomainXYPlot result = (CombinedDomainXYPlot) super.clone(); 
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }
    
    // after setting up all the subplots, the shared domain axis may need 
    // reconfiguring
    ValueAxis domainAxis = result.getDomainAxis();
    if (domainAxis != null) {
        domainAxis.configure();
    }
    
    return result;
    
}
 
Example 3
Source File: CombinedDomainXYPlot.java    From ECG-Viewer with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns a clone of the annotation.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException  this class will not throw this
 *         exception, but subclasses (if any) might.
 */
@Override
public Object clone() throws CloneNotSupportedException {

    CombinedDomainXYPlot result = (CombinedDomainXYPlot) super.clone();
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }

    // after setting up all the subplots, the shared domain axis may need
    // reconfiguring
    ValueAxis domainAxis = result.getDomainAxis();
    if (domainAxis != null) {
        domainAxis.configure();
    }

    return result;

}
 
Example 4
Source File: CombinedRangeXYPlot.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns a clone of the plot.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException  this class will not throw this
 *         exception, but subclasses (if any) might.
 */
@Override
public Object clone() throws CloneNotSupportedException {

    CombinedRangeXYPlot result = (CombinedRangeXYPlot) super.clone();
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }

    // after setting up all the subplots, the shared range axis may need
    // reconfiguring
    ValueAxis rangeAxis = result.getRangeAxis();
    if (rangeAxis != null) {
        rangeAxis.configure();
    }

    return result;
}
 
Example 5
Source File: CombinedRangeCategoryPlot.java    From SIMVA-SoS with Apache License 2.0 6 votes vote down vote up
/**
 * Returns a clone of the plot.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException  this class will not throw this
 *         exception, but subclasses (if any) might.
 */
@Override
public Object clone() throws CloneNotSupportedException {
    CombinedRangeCategoryPlot result
        = (CombinedRangeCategoryPlot) super.clone();
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }

    // after setting up all the subplots, the shared range axis may need
    // reconfiguring
    ValueAxis rangeAxis = result.getRangeAxis();
    if (rangeAxis != null) {
        rangeAxis.configure();
    }

    return result;
}
 
Example 6
Source File: CombinedDomainXYPlot.java    From openstock with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns a clone of the annotation.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException  this class will not throw this
 *         exception, but subclasses (if any) might.
 */
@Override
public Object clone() throws CloneNotSupportedException {

    CombinedDomainXYPlot result = (CombinedDomainXYPlot) super.clone();
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }

    // after setting up all the subplots, the shared domain axis may need
    // reconfiguring
    ValueAxis domainAxis = result.getDomainAxis();
    if (domainAxis != null) {
        domainAxis.configure();
    }

    return result;

}
 
Example 7
Source File: CombinedRangeCategoryPlot.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns a clone of the plot.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException  this class will not throw this
 *         exception, but subclasses (if any) might.
 */
@Override
public Object clone() throws CloneNotSupportedException {
    CombinedRangeCategoryPlot result
        = (CombinedRangeCategoryPlot) super.clone();
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }

    // after setting up all the subplots, the shared range axis may need
    // reconfiguring
    ValueAxis rangeAxis = result.getRangeAxis();
    if (rangeAxis != null) {
        rangeAxis.configure();
    }

    return result;
}
 
Example 8
Source File: CombinedDomainXYPlot.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns a clone of the annotation.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException  this class will not throw this
 *         exception, but subclasses (if any) might.
 */
@Override
public Object clone() throws CloneNotSupportedException {

    CombinedDomainXYPlot result = (CombinedDomainXYPlot) super.clone();
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }

    // after setting up all the subplots, the shared domain axis may need
    // reconfiguring
    ValueAxis domainAxis = result.getDomainAxis();
    if (domainAxis != null) {
        domainAxis.configure();
    }

    return result;

}
 
Example 9
Source File: CombinedRangeCategoryPlot.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns a clone of the plot.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException  this class will not throw this
 *         exception, but subclasses (if any) might.
 */
@Override
public Object clone() throws CloneNotSupportedException {
    CombinedRangeCategoryPlot result
        = (CombinedRangeCategoryPlot) super.clone();
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }

    // after setting up all the subplots, the shared range axis may need
    // reconfiguring
    ValueAxis rangeAxis = result.getRangeAxis();
    if (rangeAxis != null) {
        rangeAxis.configure();
    }

    return result;
}
 
Example 10
Source File: CombinedRangeXYPlot.java    From opensim-gui with Apache License 2.0 6 votes vote down vote up
/**
 * Returns a clone of the plot.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException  this class will not throw this 
 *         exception, but subclasses (if any) might.
 */
public Object clone() throws CloneNotSupportedException {
    
    CombinedRangeXYPlot result = (CombinedRangeXYPlot) super.clone(); 
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }
    
    // after setting up all the subplots, the shared range axis may need 
    // reconfiguring
    ValueAxis rangeAxis = result.getRangeAxis();
    if (rangeAxis != null) {
        rangeAxis.configure();
    }
    
    return result;
}
 
Example 11
Source File: CombinedRangeCategoryPlot.java    From opensim-gui with Apache License 2.0 6 votes vote down vote up
/**
 * Returns a clone of the plot.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException  this class will not throw this 
 *         exception, but subclasses (if any) might.
 */
public Object clone() throws CloneNotSupportedException {
    CombinedRangeCategoryPlot result 
        = (CombinedRangeCategoryPlot) super.clone(); 
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }
    
    // after setting up all the subplots, the shared range axis may need 
    // reconfiguring
    ValueAxis rangeAxis = result.getRangeAxis();
    if (rangeAxis != null) {
        rangeAxis.configure();
    }
    
    return result;
}
 
Example 12
Source File: CombinedRangeXYPlot.java    From openstock with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns a clone of the plot.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException  this class will not throw this
 *         exception, but subclasses (if any) might.
 */
@Override
public Object clone() throws CloneNotSupportedException {

    CombinedRangeXYPlot result = (CombinedRangeXYPlot) super.clone();
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }

    // after setting up all the subplots, the shared range axis may need
    // reconfiguring
    ValueAxis rangeAxis = result.getRangeAxis();
    if (rangeAxis != null) {
        rangeAxis.configure();
    }

    return result;
}
 
Example 13
Source File: CombinedRangeCategoryPlot.java    From openstock with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns a clone of the plot.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException  this class will not throw this
 *         exception, but subclasses (if any) might.
 */
@Override
public Object clone() throws CloneNotSupportedException {
    CombinedRangeCategoryPlot result
        = (CombinedRangeCategoryPlot) super.clone();
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }

    // after setting up all the subplots, the shared range axis may need
    // reconfiguring
    ValueAxis rangeAxis = result.getRangeAxis();
    if (rangeAxis != null) {
        rangeAxis.configure();
    }

    return result;
}
 
Example 14
Source File: CategoryPlot.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * A utility method to clone the marker maps.
 *
 * @param map  the map to clone.
 *
 * @return A clone of the map.
 *
 * @throws CloneNotSupportedException if there is some problem cloning the
 *                                    map.
 */
private Map cloneMarkerMap(Map map) throws CloneNotSupportedException {
    Map clone = new HashMap();
    Set keys = map.keySet();
    Iterator iterator = keys.iterator();
    while (iterator.hasNext()) {
        Object key = iterator.next();
        List entry = (List) map.get(key);
        Object toAdd = ObjectUtilities.deepClone(entry);
        clone.put(key, toAdd);
    }
    return clone;
}
 
Example 15
Source File: CategoryPlot.java    From openstock with GNU General Public License v3.0 5 votes vote down vote up
/**
 * A utility method to clone the marker maps.
 *
 * @param map  the map to clone.
 *
 * @return A clone of the map.
 *
 * @throws CloneNotSupportedException if there is some problem cloning the
 *                                    map.
 */
private Map cloneMarkerMap(Map map) throws CloneNotSupportedException {
    Map clone = new HashMap();
    Set keys = map.keySet();
    Iterator iterator = keys.iterator();
    while (iterator.hasNext()) {
        Object key = iterator.next();
        List entry = (List) map.get(key);
        Object toAdd = ObjectUtilities.deepClone(entry);
        clone.put(key, toAdd);
    }
    return clone;
}
 
Example 16
Source File: CombinedDomainCategoryPlot.java    From opensim-gui with Apache License 2.0 5 votes vote down vote up
/**
 * Returns a clone of the plot.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException  this class will not throw this 
 *         exception, but subclasses (if any) might.
 */
public Object clone() throws CloneNotSupportedException {
    
    CombinedDomainCategoryPlot result 
        = (CombinedDomainCategoryPlot) super.clone(); 
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }
    return result;
    
}
 
Example 17
Source File: CategoryPlot.java    From SIMVA-SoS with Apache License 2.0 5 votes vote down vote up
/**
 * A utility method to clone the marker maps.
 *
 * @param map  the map to clone.
 *
 * @return A clone of the map.
 *
 * @throws CloneNotSupportedException if there is some problem cloning the
 *                                    map.
 */
private Map cloneMarkerMap(Map map) throws CloneNotSupportedException {
    Map clone = new HashMap();
    Set keys = map.keySet();
    Iterator iterator = keys.iterator();
    while (iterator.hasNext()) {
        Object key = iterator.next();
        List entry = (List) map.get(key);
        Object toAdd = ObjectUtilities.deepClone(entry);
        clone.put(key, toAdd);
    }
    return clone;
}
 
Example 18
Source File: CategoryPlot.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * A utility method to clone the marker maps.
 *
 * @param map  the map to clone.
 *
 * @return A clone of the map.
 *
 * @throws CloneNotSupportedException if there is some problem cloning the
 *                                    map.
 */
private Map cloneMarkerMap(Map map) throws CloneNotSupportedException {
    Map clone = new HashMap();
    Set keys = map.keySet();
    Iterator iterator = keys.iterator();
    while (iterator.hasNext()) {
        Object key = iterator.next();
        List entry = (List) map.get(key);
        Object toAdd = ObjectUtilities.deepClone(entry);
        clone.put(key, toAdd);
    }
    return clone;
}
 
Example 19
Source File: CombinedDomainCategoryPlot.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Returns a clone of the plot.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException  this class will not throw this
 *         exception, but subclasses (if any) might.
 */
@Override
public Object clone() throws CloneNotSupportedException {

    CombinedDomainCategoryPlot result
        = (CombinedDomainCategoryPlot) super.clone();
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }
    return result;

}
 
Example 20
Source File: CombinedDomainCategoryPlot.java    From ECG-Viewer with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Returns a clone of the plot.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException  this class will not throw this
 *         exception, but subclasses (if any) might.
 */
@Override
public Object clone() throws CloneNotSupportedException {

    CombinedDomainCategoryPlot result
        = (CombinedDomainCategoryPlot) super.clone();
    result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
    for (Iterator it = result.subplots.iterator(); it.hasNext();) {
        Plot child = (Plot) it.next();
        child.setParent(result);
    }
    return result;

}