/** * * The MIT License * * Copyright (c) 2011 the original author or authors. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package com.googlecode.charts4j; /** * Text markers for {@link LineChart}s, {@link XYLineChart}s, {@link RadarChart} * s, {@link ScatterPlot}s, and {@link BarChart}s. Markers are constructed with * the {@link Markers} class. * * @author Julien Chastang (julien.c.chastang at gmail dot com) * * @see LineChart * @see XYLineChart * @see ScatterPlot * @see BarChart */ public class TextMarker extends AbstractMarker { /** Text of marker. **/ private final String text; /** Is the text marker flagged. **/ private boolean flagged = false; /** * Instantiates a new text marker. * * @param text * the text * @param color * the color * @param size * the size * @param priority * the priority * @param flagged * the flagged */ TextMarker(final String text, final Color color, final int size, final Priority priority, final boolean flagged) { super(color, size, priority); this.text = text; this.flagged = flagged; } /** * Get the text associated with this text marker. * * @return text for this text marker. */ public final String getText() { return text; } /** * Checks if is flagged. * * @return true, if is flagged */ public boolean isFlagged() { return flagged; } }