org.jfree.util.BooleanList Java Examples

The following examples show how to use org.jfree.util.BooleanList. 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: XYLineAndShapeRenderer.java    From SIMVA-SoS with Apache License 2.0 6 votes vote down vote up
/**
 * Creates a new renderer.
 *
 * @param lines  lines visible?
 * @param shapes  shapes visible?
 */
public XYLineAndShapeRenderer(boolean lines, boolean shapes) {
    this.linesVisible = null;
    this.seriesLinesVisible = new BooleanList();
    this.baseLinesVisible = lines;
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);

    this.shapesVisible = null;
    this.seriesShapesVisible = new BooleanList();
    this.baseShapesVisible = shapes;

    this.shapesFilled = null;
    this.useFillPaint = false;     // use item paint for fills by default
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;

    this.drawOutlines = true;
    this.useOutlinePaint = false;  // use item paint for outlines by
                                   // default, not outline paint

    this.drawSeriesLineAsPath = false;
}
 
Example #2
Source File: LineAndShapeRenderer.java    From opensim-gui with Apache License 2.0 6 votes vote down vote up
/**
 * Creates a new renderer with lines and/or shapes visible.
 * 
 * @param lines  draw lines?
 * @param shapes  draw shapes?
 */
public LineAndShapeRenderer(boolean lines, boolean shapes) {
    super();
    this.linesVisible = null;
    this.seriesLinesVisible = new BooleanList();
    this.baseLinesVisible = lines;
    this.shapesVisible = null;
    this.seriesShapesVisible = new BooleanList();
    this.baseShapesVisible = shapes;
    this.shapesFilled = null;
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;
    this.useFillPaint = false;
    this.drawOutlines = true;
    this.useOutlinePaint = false;
}
 
Example #3
Source File: XYLineAndShapeRenderer.java    From opensim-gui with Apache License 2.0 6 votes vote down vote up
/**
 * Creates a new renderer.
 * 
 * @param lines  lines visible?
 * @param shapes  shapes visible?
 */
public XYLineAndShapeRenderer(boolean lines, boolean shapes) {
    this.linesVisible = null;
    this.seriesLinesVisible = new BooleanList();
    this.baseLinesVisible = lines;
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);
    
    this.shapesVisible = null;
    this.seriesShapesVisible = new BooleanList();
    this.baseShapesVisible = shapes;
    
    this.shapesFilled = null;
    this.useFillPaint = false;     // use item paint for fills by default
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;

    this.drawOutlines = true;     
    this.useOutlinePaint = false;  // use item paint for outlines by 
                                   // default, not outline paint
    
    this.drawSeriesLineAsPath = true; //Ayman
}
 
Example #4
Source File: HashUtilities.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Computes a hash code for a {@link BooleanList}.  In the latest version
 * of JCommon, the {@link BooleanList} class should implement the hashCode()
 * method correctly, but we compute it here anyway so that we can work with 
 * older versions of JCommon (back to 1.0.0).
 * 
 * @param pre  the seed value.
 * @param list  the list (<code>null</code> permitted).
 * 
 * @return The hash code.
 * 
 * @since 1.0.9
 */
public static int hashCode(int pre, BooleanList list) {
    if (list == null) {
        return pre;
    }
    int result = 127;
    int size = list.size();
    result = HashUtilities.hashCode(result, size);
    
    // for efficiency, we just use the first, last and middle items to
    // compute a hashCode...
    if (size > 0) {
        result = HashUtilities.hashCode(result, list.getBoolean(0));
        if (size > 1) {
            result = HashUtilities.hashCode(result, 
                    list.getBoolean(size - 1));
            if (size > 2) {
                result = HashUtilities.hashCode(result, 
                        list.getBoolean(size / 2));
            }
        }
    }
    return 37 * pre + result;
}
 
Example #5
Source File: XYLineAndShapeRenderer.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates a new renderer.
 *
 * @param lines  lines visible?
 * @param shapes  shapes visible?
 */
public XYLineAndShapeRenderer(boolean lines, boolean shapes) {
    this.linesVisible = null;
    this.seriesLinesVisible = new BooleanList();
    this.baseLinesVisible = lines;
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);

    this.shapesVisible = null;
    this.seriesShapesVisible = new BooleanList();
    this.baseShapesVisible = shapes;

    this.shapesFilled = null;
    this.useFillPaint = false;     // use item paint for fills by default
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;

    this.drawOutlines = true;
    this.useOutlinePaint = false;  // use item paint for outlines by
                                   // default, not outline paint

    this.drawSeriesLineAsPath = false;
}
 
Example #6
Source File: LineAndShapeRenderer.java    From ECG-Viewer with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Creates a new renderer with lines and/or shapes visible.
 *
 * @param lines  draw lines?
 * @param shapes  draw shapes?
 */
public LineAndShapeRenderer(boolean lines, boolean shapes) {
    super();
    this.linesVisible = null;
    this.seriesLinesVisible = new BooleanList();
    this.baseLinesVisible = lines;
    this.shapesVisible = null;
    this.seriesShapesVisible = new BooleanList();
    this.baseShapesVisible = shapes;
    this.shapesFilled = null;
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;
    this.useFillPaint = false;
    this.drawOutlines = true;
    this.useOutlinePaint = false;
    this.useSeriesOffset = false;  // preserves old behaviour
    this.itemMargin = 0.0;
}
 
Example #7
Source File: DefaultPolarItemRenderer.java    From ECG-Viewer with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Creates a new instance of DefaultPolarItemRenderer
 */
public DefaultPolarItemRenderer() {
    this.seriesFilled = new BooleanList();
    this.drawOutlineWhenFilled = true;
    this.fillComposite = AlphaComposite.getInstance(
            AlphaComposite.SRC_OVER, 0.3f);
    this.useFillPaint = false;     // use item paint for fills by default
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);
    this.shapesVisible = true;
    this.connectFirstAndLastPoint = true;
    
    this.toolTipGeneratorList = new ObjectList();
    this.urlGenerator = null;
    this.legendItemToolTipGenerator = null;
    this.legendItemURLGenerator = null;
}
 
Example #8
Source File: HashUtilities.java    From openstock with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Computes a hash code for a {@link BooleanList}.  In the latest version
 * of JCommon, the {@link BooleanList} class should implement the hashCode()
 * method correctly, but we compute it here anyway so that we can work with 
 * older versions of JCommon (back to 1.0.0).
 * 
 * @param pre  the seed value.
 * @param list  the list (<code>null</code> permitted).
 * 
 * @return The hash code.
 * 
 * @since 1.0.9
 */
public static int hashCode(int pre, BooleanList list) {
    if (list == null) {
        return pre;
    }
    int result = 127;
    int size = list.size();
    result = HashUtilities.hashCode(result, size);
    
    // for efficiency, we just use the first, last and middle items to
    // compute a hashCode...
    if (size > 0) {
        result = HashUtilities.hashCode(result, list.getBoolean(0));
        if (size > 1) {
            result = HashUtilities.hashCode(result, 
                    list.getBoolean(size - 1));
            if (size > 2) {
                result = HashUtilities.hashCode(result, 
                        list.getBoolean(size / 2));
            }
        }
    }
    return 37 * pre + result;
}
 
Example #9
Source File: XYLineAndShapeRenderer.java    From ECG-Viewer with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Creates a new renderer.
 *
 * @param lines  lines visible?
 * @param shapes  shapes visible?
 */
public XYLineAndShapeRenderer(boolean lines, boolean shapes) {
    this.linesVisible = null;
    this.seriesLinesVisible = new BooleanList();
    this.baseLinesVisible = lines;
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);

    this.shapesVisible = null;
    this.seriesShapesVisible = new BooleanList();
    this.baseShapesVisible = shapes;

    this.shapesFilled = null;
    this.useFillPaint = false;     // use item paint for fills by default
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;

    this.drawOutlines = true;
    this.useOutlinePaint = false;  // use item paint for outlines by
                                   // default, not outline paint

    this.drawSeriesLineAsPath = false;
}
 
Example #10
Source File: HashUtilities.java    From ECG-Viewer with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Computes a hash code for a {@link BooleanList}.  In the latest version
 * of JCommon, the {@link BooleanList} class should implement the hashCode()
 * method correctly, but we compute it here anyway so that we can work with 
 * older versions of JCommon (back to 1.0.0).
 * 
 * @param pre  the seed value.
 * @param list  the list (<code>null</code> permitted).
 * 
 * @return The hash code.
 * 
 * @since 1.0.9
 */
public static int hashCode(int pre, BooleanList list) {
    if (list == null) {
        return pre;
    }
    int result = 127;
    int size = list.size();
    result = HashUtilities.hashCode(result, size);
    
    // for efficiency, we just use the first, last and middle items to
    // compute a hashCode...
    if (size > 0) {
        result = HashUtilities.hashCode(result, list.getBoolean(0));
        if (size > 1) {
            result = HashUtilities.hashCode(result, 
                    list.getBoolean(size - 1));
            if (size > 2) {
                result = HashUtilities.hashCode(result, 
                        list.getBoolean(size / 2));
            }
        }
    }
    return 37 * pre + result;
}
 
Example #11
Source File: DefaultPolarItemRenderer.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates a new instance of DefaultPolarItemRenderer
 */
public DefaultPolarItemRenderer() {
    this.seriesFilled = new BooleanList();
    this.drawOutlineWhenFilled = true;
    this.fillComposite = AlphaComposite.getInstance(
            AlphaComposite.SRC_OVER, 0.3f);
    this.useFillPaint = false;     // use item paint for fills by default
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);
    this.shapesVisible = true;
    this.connectFirstAndLastPoint = true;
    
    this.toolTipGeneratorList = new ObjectList();
    this.urlGenerator = null;
    this.legendItemToolTipGenerator = null;
    this.legendItemURLGenerator = null;
}
 
Example #12
Source File: LineAndShapeRenderer.java    From SIMVA-SoS with Apache License 2.0 6 votes vote down vote up
/**
 * Creates a new renderer with lines and/or shapes visible.
 *
 * @param lines  draw lines?
 * @param shapes  draw shapes?
 */
public LineAndShapeRenderer(boolean lines, boolean shapes) {
    super();
    this.linesVisible = null;
    this.seriesLinesVisible = new BooleanList();
    this.baseLinesVisible = lines;
    this.shapesVisible = null;
    this.seriesShapesVisible = new BooleanList();
    this.baseShapesVisible = shapes;
    this.shapesFilled = null;
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;
    this.useFillPaint = false;
    this.drawOutlines = true;
    this.useOutlinePaint = false;
    this.useSeriesOffset = false;  // preserves old behaviour
    this.itemMargin = 0.0;
}
 
Example #13
Source File: DefaultPolarItemRenderer.java    From SIMVA-SoS with Apache License 2.0 6 votes vote down vote up
/**
 * Creates a new instance of DefaultPolarItemRenderer
 */
public DefaultPolarItemRenderer() {
    this.seriesFilled = new BooleanList();
    this.drawOutlineWhenFilled = true;
    this.fillComposite = AlphaComposite.getInstance(
            AlphaComposite.SRC_OVER, 0.3f);
    this.useFillPaint = false;     // use item paint for fills by default
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);
    this.shapesVisible = true;
    this.connectFirstAndLastPoint = true;
    
    this.toolTipGeneratorList = new ObjectList();
    this.urlGenerator = null;
    this.legendItemToolTipGenerator = null;
    this.legendItemURLGenerator = null;
}
 
Example #14
Source File: LineAndShapeRenderer.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates a new renderer with lines and/or shapes visible.
 *
 * @param lines  draw lines?
 * @param shapes  draw shapes?
 */
public LineAndShapeRenderer(boolean lines, boolean shapes) {
    super();
    this.linesVisible = null;
    this.seriesLinesVisible = new BooleanList();
    this.baseLinesVisible = lines;
    this.shapesVisible = null;
    this.seriesShapesVisible = new BooleanList();
    this.baseShapesVisible = shapes;
    this.shapesFilled = null;
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;
    this.useFillPaint = false;
    this.drawOutlines = true;
    this.useOutlinePaint = false;
    this.useSeriesOffset = false;  // preserves old behaviour
    this.itemMargin = 0.0;
}
 
Example #15
Source File: HashUtilities.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Computes a hash code for a {@link BooleanList}.  In the latest version
 * of JCommon, the {@link BooleanList} class should implement the hashCode()
 * method correctly, but we compute it here anyway so that we can work with 
 * older versions of JCommon (back to 1.0.0).
 * 
 * @param pre  the seed value.
 * @param list  the list (<code>null</code> permitted).
 * 
 * @return The hash code.
 * 
 * @since 1.0.9
 */
public static int hashCode(int pre, BooleanList list) {
    if (list == null) {
        return pre;
    }
    int result = 127;
    int size = list.size();
    result = HashUtilities.hashCode(result, size);
    
    // for efficiency, we just use the first, last and middle items to
    // compute a hashCode...
    if (size > 0) {
        result = HashUtilities.hashCode(result, list.getBoolean(0));
        if (size > 1) {
            result = HashUtilities.hashCode(result, 
                    list.getBoolean(size - 1));
            if (size > 2) {
                result = HashUtilities.hashCode(result, 
                        list.getBoolean(size / 2));
            }
        }
    }
    return 37 * pre + result;
}
 
Example #16
Source File: LineAndShapeRenderer.java    From ccu-historian with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates a new renderer with lines and/or shapes visible.
 *
 * @param lines  draw lines?
 * @param shapes  draw shapes?
 */
public LineAndShapeRenderer(boolean lines, boolean shapes) {
    super();
    this.linesVisible = null;
    this.seriesLinesVisible = new BooleanList();
    this.baseLinesVisible = lines;
    this.shapesVisible = null;
    this.seriesShapesVisible = new BooleanList();
    this.baseShapesVisible = shapes;
    this.shapesFilled = null;
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;
    this.useFillPaint = false;
    this.drawOutlines = true;
    this.useOutlinePaint = false;
    this.useSeriesOffset = false;  // preserves old behaviour
    this.itemMargin = 0.0;
}
 
Example #17
Source File: DefaultPolarItemRenderer.java    From ccu-historian with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates a new instance of DefaultPolarItemRenderer
 */
public DefaultPolarItemRenderer() {
    this.seriesFilled = new BooleanList();
    this.drawOutlineWhenFilled = true;
    this.fillComposite = AlphaComposite.getInstance(
            AlphaComposite.SRC_OVER, 0.3f);
    this.useFillPaint = false;     // use item paint for fills by default
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);
    this.shapesVisible = true;
    this.connectFirstAndLastPoint = true;
    
    this.toolTipGeneratorList = new ObjectList();
    this.urlGenerator = null;
    this.legendItemToolTipGenerator = null;
    this.legendItemURLGenerator = null;
}
 
Example #18
Source File: XYLineAndShapeRenderer.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates a new renderer.
 *
 * @param lines  lines visible?
 * @param shapes  shapes visible?
 */
public XYLineAndShapeRenderer(boolean lines, boolean shapes) {
    this.linesVisible = null;
    this.seriesLinesVisible = new BooleanList();
    this.baseLinesVisible = lines;
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);

    this.shapesVisible = null;
    this.seriesShapesVisible = new BooleanList();
    this.baseShapesVisible = shapes;

    this.shapesFilled = null;
    this.useFillPaint = false;     // use item paint for fills by default
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;

    this.drawOutlines = true;
    this.useOutlinePaint = false;  // use item paint for outlines by
                                   // default, not outline paint

    this.drawSeriesLineAsPath = false;
}
 
Example #19
Source File: XYLineAndShapeRenderer.java    From ccu-historian with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates a new renderer.
 *
 * @param lines  lines visible?
 * @param shapes  shapes visible?
 */
public XYLineAndShapeRenderer(boolean lines, boolean shapes) {
    this.linesVisible = null;
    this.seriesLinesVisible = new BooleanList();
    this.baseLinesVisible = lines;
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);

    this.shapesVisible = null;
    this.seriesShapesVisible = new BooleanList();
    this.baseShapesVisible = shapes;

    this.shapesFilled = null;
    this.useFillPaint = false;     // use item paint for fills by default
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;

    this.drawOutlines = true;
    this.useOutlinePaint = false;  // use item paint for outlines by
                                   // default, not outline paint

    this.drawSeriesLineAsPath = false;
}
 
Example #20
Source File: XYLineAndShapeRenderer.java    From openstock with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates a new renderer.
 *
 * @param lines  lines visible?
 * @param shapes  shapes visible?
 */
public XYLineAndShapeRenderer(boolean lines, boolean shapes) {
    this.linesVisible = null;
    this.seriesLinesVisible = new BooleanList();
    this.baseLinesVisible = lines;
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);

    this.shapesVisible = null;
    this.seriesShapesVisible = new BooleanList();
    this.baseShapesVisible = shapes;

    this.shapesFilled = null;
    this.useFillPaint = false;     // use item paint for fills by default
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;

    this.drawOutlines = true;
    this.useOutlinePaint = false;  // use item paint for outlines by
                                   // default, not outline paint

    this.drawSeriesLineAsPath = false;
}
 
Example #21
Source File: HashUtilities.java    From SIMVA-SoS with Apache License 2.0 6 votes vote down vote up
/**
 * Computes a hash code for a {@link BooleanList}.  In the latest version
 * of JCommon, the {@link BooleanList} class should implement the hashCode()
 * method correctly, but we compute it here anyway so that we can work with 
 * older versions of JCommon (back to 1.0.0).
 * 
 * @param pre  the seed value.
 * @param list  the list (<code>null</code> permitted).
 * 
 * @return The hash code.
 * 
 * @since 1.0.9
 */
public static int hashCode(int pre, BooleanList list) {
    if (list == null) {
        return pre;
    }
    int result = 127;
    int size = list.size();
    result = HashUtilities.hashCode(result, size);
    
    // for efficiency, we just use the first, last and middle items to
    // compute a hashCode...
    if (size > 0) {
        result = HashUtilities.hashCode(result, list.getBoolean(0));
        if (size > 1) {
            result = HashUtilities.hashCode(result, 
                    list.getBoolean(size - 1));
            if (size > 2) {
                result = HashUtilities.hashCode(result, 
                        list.getBoolean(size / 2));
            }
        }
    }
    return 37 * pre + result;
}
 
Example #22
Source File: HashUtilities.java    From ccu-historian with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Computes a hash code for a {@link BooleanList}.  In the latest version
 * of JCommon, the {@link BooleanList} class should implement the hashCode()
 * method correctly, but we compute it here anyway so that we can work with 
 * older versions of JCommon (back to 1.0.0).
 * 
 * @param pre  the seed value.
 * @param list  the list (<code>null</code> permitted).
 * 
 * @return The hash code.
 * 
 * @since 1.0.9
 */
public static int hashCode(int pre, BooleanList list) {
    if (list == null) {
        return pre;
    }
    int result = 127;
    int size = list.size();
    result = HashUtilities.hashCode(result, size);
    
    // for efficiency, we just use the first, last and middle items to
    // compute a hashCode...
    if (size > 0) {
        result = HashUtilities.hashCode(result, list.getBoolean(0));
        if (size > 1) {
            result = HashUtilities.hashCode(result, 
                    list.getBoolean(size - 1));
            if (size > 2) {
                result = HashUtilities.hashCode(result, 
                        list.getBoolean(size / 2));
            }
        }
    }
    return 37 * pre + result;
}
 
Example #23
Source File: DefaultPolarItemRenderer.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates a new instance of DefaultPolarItemRenderer
 */
public DefaultPolarItemRenderer() {
    this.seriesFilled = new BooleanList();
    this.drawOutlineWhenFilled = true;
    this.fillComposite = AlphaComposite.getInstance(
            AlphaComposite.SRC_OVER, 0.3f);
    this.useFillPaint = false;     // use item paint for fills by default
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);
    this.shapesVisible = true;
    this.connectFirstAndLastPoint = true;
    
    this.toolTipGeneratorList = new ObjectList();
    this.urlGenerator = null;
    this.legendItemToolTipGenerator = null;
    this.legendItemURLGenerator = null;
}
 
Example #24
Source File: LineAndShapeRenderer.java    From openstock with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates a new renderer with lines and/or shapes visible.
 *
 * @param lines  draw lines?
 * @param shapes  draw shapes?
 */
public LineAndShapeRenderer(boolean lines, boolean shapes) {
    super();
    this.linesVisible = null;
    this.seriesLinesVisible = new BooleanList();
    this.baseLinesVisible = lines;
    this.shapesVisible = null;
    this.seriesShapesVisible = new BooleanList();
    this.baseShapesVisible = shapes;
    this.shapesFilled = null;
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;
    this.useFillPaint = false;
    this.drawOutlines = true;
    this.useOutlinePaint = false;
    this.useSeriesOffset = false;  // preserves old behaviour
    this.itemMargin = 0.0;
}
 
Example #25
Source File: DefaultPolarItemRenderer.java    From openstock with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates a new instance of DefaultPolarItemRenderer
 */
public DefaultPolarItemRenderer() {
    this.seriesFilled = new BooleanList();
    this.drawOutlineWhenFilled = true;
    this.fillComposite = AlphaComposite.getInstance(
            AlphaComposite.SRC_OVER, 0.3f);
    this.useFillPaint = false;     // use item paint for fills by default
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);
    this.shapesVisible = true;
    this.connectFirstAndLastPoint = true;
    
    this.toolTipGeneratorList = new ObjectList();
    this.urlGenerator = null;
    this.legendItemToolTipGenerator = null;
    this.legendItemURLGenerator = null;
}
 
Example #26
Source File: LineAndShapeRenderer.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates a new renderer with lines and/or shapes visible.
 *
 * @param lines  draw lines?
 * @param shapes  draw shapes?
 */
public LineAndShapeRenderer(boolean lines, boolean shapes) {
    super();
    this.linesVisible = null;
    this.seriesLinesVisible = new BooleanList();
    this.baseLinesVisible = lines;
    this.shapesVisible = null;
    this.seriesShapesVisible = new BooleanList();
    this.baseShapesVisible = shapes;
    this.shapesFilled = null;
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;
    this.useFillPaint = false;
    this.drawOutlines = true;
    this.useOutlinePaint = false;
    this.useSeriesOffset = false;  // preserves old behaviour
    this.itemMargin = 0.0;
}
 
Example #27
Source File: StandardXYItemRenderer.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Constructs a new renderer.  To specify the type of renderer, use one of
 * the constants: {@link #SHAPES}, {@link #LINES} or
 * {@link #SHAPES_AND_LINES}.
 *
 * @param type  the type of renderer.
 * @param toolTipGenerator  the item label generator (<code>null</code>
 *                          permitted).
 * @param urlGenerator  the URL generator.
 */
public StandardXYItemRenderer(int type,
                              XYToolTipGenerator toolTipGenerator,
                              XYURLGenerator urlGenerator) {

    super();
    setBaseToolTipGenerator(toolTipGenerator);
    setURLGenerator(urlGenerator);
    if ((type & SHAPES) != 0) {
        this.baseShapesVisible = true;
    }
    if ((type & LINES) != 0) {
        this.plotLines = true;
    }
    if ((type & IMAGES) != 0) {
        this.plotImages = true;
    }
    if ((type & DISCONTINUOUS) != 0) {
        this.plotDiscontinuous = true;
    }

    this.shapesFilled = null;
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);
    this.drawSeriesLineAsPath = false;
}
 
Example #28
Source File: ScatterRenderer.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Constructs a new renderer.
 */
public ScatterRenderer() {
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;
    this.useFillPaint = false;
    this.drawOutlines = false;
    this.useOutlinePaint = false;
    this.useSeriesOffset = true;
    this.itemMargin = 0.20;
}
 
Example #29
Source File: StandardXYItemRenderer.java    From nmonvisualizer with Apache License 2.0 5 votes vote down vote up
/**
 * Constructs a new renderer.  To specify the type of renderer, use one of
 * the constants: {@link #SHAPES}, {@link #LINES} or
 * {@link #SHAPES_AND_LINES}.
 *
 * @param type  the type of renderer.
 * @param toolTipGenerator  the item label generator (<code>null</code>
 *                          permitted).
 * @param urlGenerator  the URL generator.
 */
public StandardXYItemRenderer(int type,
                              XYToolTipGenerator toolTipGenerator,
                              XYURLGenerator urlGenerator) {

    super();
    setBaseToolTipGenerator(toolTipGenerator);
    setURLGenerator(urlGenerator);
    if ((type & SHAPES) != 0) {
        this.baseShapesVisible = true;
    }
    if ((type & LINES) != 0) {
        this.plotLines = true;
    }
    if ((type & IMAGES) != 0) {
        this.plotImages = true;
    }
    if ((type & DISCONTINUOUS) != 0) {
        this.plotDiscontinuous = true;
    }

    this.shapesFilled = null;
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);
    this.drawSeriesLineAsPath = false;
}
 
Example #30
Source File: StandardXYItemRenderer.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Constructs a new renderer.  To specify the type of renderer, use one of
 * the constants: {@link #SHAPES}, {@link #LINES} or
 * {@link #SHAPES_AND_LINES}.
 *
 * @param type  the type of renderer.
 * @param toolTipGenerator  the item label generator (<code>null</code>
 *                          permitted).
 * @param urlGenerator  the URL generator.
 */
public StandardXYItemRenderer(int type,
                              XYToolTipGenerator toolTipGenerator,
                              XYURLGenerator urlGenerator) {

    super();
    setBaseToolTipGenerator(toolTipGenerator);
    setURLGenerator(urlGenerator);
    if ((type & SHAPES) != 0) {
        this.baseShapesVisible = true;
    }
    if ((type & LINES) != 0) {
        this.plotLines = true;
    }
    if ((type & IMAGES) != 0) {
        this.plotImages = true;
    }
    if ((type & DISCONTINUOUS) != 0) {
        this.plotDiscontinuous = true;
    }

    this.shapesFilled = null;
    this.seriesShapesFilled = new BooleanList();
    this.baseShapesFilled = true;
    this.legendLine = new Line2D.Double(-7.0, 0.0, 7.0, 0.0);
    this.drawSeriesLineAsPath = false;
}