/**
* Creates a legend item with a filled shape. The shape is not outlined,
* and no line is visible.
*
* @param label the label (<code>null</code> not permitted).
* @param description the description (<code>null</code> permitted).
* @param toolTipText the tool tip text (<code>null</code> permitted).
* @param urlText the URL text (<code>null</code> permitted).
* @param shape the shape (<code>null</code> not permitted).
* @param fillPaint the paint used to fill the shape (<code>null</code>
* not permitted).
*/
public LegendItem( [[#variable1aa31660]] label, String description, String toolTipText, String urlText, Shape shape, Paint fillPaint) {
this(label, description, toolTipText, urlText,
/* shape visible = */
true, shape,
/* shape filled = */
true, fillPaint,
/* shape outlined */
/* shape outlined = */
false, Color.black, UNUSED_STROKE,
/* line visible */
/* line visible = */
false, UNUSED_SHAPE, UNUSED_STROKE, Color.black);
}
/**
* Creates a legend item with a filled and outlined shape.
*
* @param label the label (<code>null</code> not permitted).
* @param description the description (<code>null</code> permitted).
* @param toolTipText the tool tip text (<code>null</code> permitted).
* @param urlText the URL text (<code>null</code> permitted).
* @param shape the shape (<code>null</code> not permitted).
* @param fillPaint the paint used to fill the shape (<code>null</code>
* not permitted).
* @param outlineStroke the outline stroke (<code>null</code> not
* permitted).
* @param outlinePaint the outline paint (<code>null</code> not
* permitted).
*/
public LegendItem( [[#variable1aa31660]] label, String description, String toolTipText, String urlText, Shape shape, Paint fillPaint, Stroke outlineStroke, Paint outlinePaint) {
this(label, description, toolTipText, urlText,
/* shape visible = */
true, shape,
/* shape filled = */
true, fillPaint,
/* shape outlined = */
true, outlinePaint, outlineStroke,
/* line visible */
/* line visible = */
false, UNUSED_SHAPE, UNUSED_STROKE, Color.black);
}
/**
* Creates a legend item using a line.
*
* @param label the label (<code>null</code> not permitted).
* @param description the description (<code>null</code> permitted).
* @param toolTipText the tool tip text (<code>null</code> permitted).
* @param urlText the URL text (<code>null</code> permitted).
* @param line the line (<code>null</code> not permitted).
* @param lineStroke the line stroke (<code>null</code> not permitted).
* @param linePaint the line paint (<code>null</code> not permitted).
*/
public LegendItem( [[#variable1aa31660]] label, String description, String toolTipText, String urlText, Shape line, Stroke lineStroke, Paint linePaint) {
this(label, description, toolTipText, urlText,
/* shape visible = */
false, UNUSED_SHAPE,
/* shape filled = */
false, Color.black,
/* shape outlined = */
false, Color.black, UNUSED_STROKE,
/* line visible = */
true, line, lineStroke, linePaint);
}
|