Java 类org.jfree.chart.plot.CategoryCrosshairState 实例源码

项目:ccu-historian    文件:AbstractCategoryItemRenderer.java   
/**
 * Considers the current (x, y) coordinate and updates the crosshair point
 * if it meets the criteria (usually means the (x, y) coordinate is the
 * closest to the anchor point so far).
 *
 * @param crosshairState  the crosshair state (<code>null</code> permitted,
 *                        but the method does nothing in that case).
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * @param value  the data value.
 * @param datasetIndex  the dataset index.
 * @param transX  the x-value translated to Java2D space.
 * @param transY  the y-value translated to Java2D space.
 * @param orientation  the plot orientation (<code>null</code> not
 *                     permitted).
 *
 * @since 1.0.11
 */
protected void updateCrosshairValues(CategoryCrosshairState crosshairState,
        Comparable rowKey, Comparable columnKey, double value,
        int datasetIndex,
        double transX, double transY, PlotOrientation orientation) {

    ParamChecks.nullNotPermitted(orientation, "orientation");

    if (crosshairState != null) {
        if (this.plot.isRangeCrosshairLockedOnData()) {
            // both axes
            crosshairState.updateCrosshairPoint(rowKey, columnKey, value,
                    datasetIndex, transX, transY, orientation);
        }
        else {
            crosshairState.updateCrosshairX(rowKey, columnKey,
                    datasetIndex, transX, orientation);
        }
    }
}
项目:jfreechart    文件:AbstractCategoryItemRenderer.java   
/**
 * Considers the current (x, y) coordinate and updates the crosshair point
 * if it meets the criteria (usually means the (x, y) coordinate is the
 * closest to the anchor point so far).
 *
 * @param crosshairState  the crosshair state ({@code null} permitted,
 *                        but the method does nothing in that case).
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * @param value  the data value.
 * @param datasetIndex  the dataset index.
 * @param transX  the x-value translated to Java2D space.
 * @param transY  the y-value translated to Java2D space.
 * @param orientation  the plot orientation ({@code null} not
 *                     permitted).
 *
 * @since 1.0.11
 */
protected void updateCrosshairValues(CategoryCrosshairState crosshairState,
        Comparable rowKey, Comparable columnKey, double value,
        int datasetIndex,
        double transX, double transY, PlotOrientation orientation) {

    Args.nullNotPermitted(orientation, "orientation");

    if (crosshairState != null) {
        if (this.plot.isRangeCrosshairLockedOnData()) {
            // both axes
            crosshairState.updateCrosshairPoint(rowKey, columnKey, value,
                    datasetIndex, transX, transY, orientation);
        }
        else {
            crosshairState.updateCrosshairX(rowKey, columnKey,
                    datasetIndex, transX, orientation);
        }
    }
}
项目:aya-lang    文件:AbstractCategoryItemRenderer.java   
/**
 * Considers the current (x, y) coordinate and updates the crosshair point
 * if it meets the criteria (usually means the (x, y) coordinate is the
 * closest to the anchor point so far).
 *
 * @param crosshairState  the crosshair state (<code>null</code> permitted,
 *                        but the method does nothing in that case).
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * @param value  the data value.
 * @param datasetIndex  the dataset index.
 * @param transX  the x-value translated to Java2D space.
 * @param transY  the y-value translated to Java2D space.
 * @param orientation  the plot orientation (<code>null</code> not
 *                     permitted).
 *
 * @since 1.0.11
 */
protected void updateCrosshairValues(CategoryCrosshairState crosshairState,
        Comparable rowKey, Comparable columnKey, double value,
        int datasetIndex,
        double transX, double transY, PlotOrientation orientation) {

    ParamChecks.nullNotPermitted(orientation, "orientation");

    if (crosshairState != null) {
        if (this.plot.isRangeCrosshairLockedOnData()) {
            // both axes
            crosshairState.updateCrosshairPoint(rowKey, columnKey, value,
                    datasetIndex, transX, transY, orientation);
        }
        else {
            crosshairState.updateCrosshairX(rowKey, columnKey,
                    datasetIndex, transX, orientation);
        }
    }
}
项目:HTML5_WebSite    文件:AbstractCategoryItemRenderer.java   
/**
 * Considers the current (x, y) coordinate and updates the crosshair point
 * if it meets the criteria (usually means the (x, y) coordinate is the
 * closest to the anchor point so far).
 *
 * @param crosshairState  the crosshair state (<code>null</code> permitted,
 *                        but the method does nothing in that case).
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * @param value  the data value.
 * @param datasetIndex  the dataset index.
 * @param transX  the x-value translated to Java2D space.
 * @param transY  the y-value translated to Java2D space.
 * @param orientation  the plot orientation (<code>null</code> not
 *                     permitted).
 *
 * @since 1.0.11
 */
protected void updateCrosshairValues(CategoryCrosshairState crosshairState,
        Comparable rowKey, Comparable columnKey, double value,
        int datasetIndex,
        double transX, double transY, PlotOrientation orientation) {

    if (orientation == null) {
        throw new IllegalArgumentException("Null 'orientation' argument.");
    }

    if (crosshairState != null) {
        if (this.plot.isRangeCrosshairLockedOnData()) {
            // both axes
            crosshairState.updateCrosshairPoint(rowKey, columnKey, value,
                    datasetIndex, transX, transY, orientation);
        }
        else {
            crosshairState.updateCrosshairX(rowKey, columnKey,
                    datasetIndex, transX, orientation);
        }
    }
}
项目:populus    文件:AbstractCategoryItemRenderer.java   
/**
 * Considers the current (x, y) coordinate and updates the crosshair point
 * if it meets the criteria (usually means the (x, y) coordinate is the
 * closest to the anchor point so far).
 *
 * @param crosshairState  the crosshair state (<code>null</code> permitted,
 *                        but the method does nothing in that case).
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * @param value  the data value.
 * @param datasetIndex  the dataset index.
 * @param transX  the x-value translated to Java2D space.
 * @param transY  the y-value translated to Java2D space.
 * @param orientation  the plot orientation (<code>null</code> not
 *                     permitted).
 *
 * @since 1.0.11
 */
protected void updateCrosshairValues(CategoryCrosshairState crosshairState,
        Comparable rowKey, Comparable columnKey, double value,
        int datasetIndex,
        double transX, double transY, PlotOrientation orientation) {

    ParamChecks.nullNotPermitted(orientation, "orientation");

    if (crosshairState != null) {
        if (this.plot.isRangeCrosshairLockedOnData()) {
            // both axes
            crosshairState.updateCrosshairPoint(rowKey, columnKey, value,
                    datasetIndex, transX, transY, orientation);
        }
        else {
            crosshairState.updateCrosshairX(rowKey, columnKey,
                    datasetIndex, transX, orientation);
        }
    }
}
项目:PI    文件:AbstractCategoryItemRenderer.java   
/**
 * Considers the current (x, y) coordinate and updates the crosshair point
 * if it meets the criteria (usually means the (x, y) coordinate is the
 * closest to the anchor point so far).
 *
 * @param crosshairState  the crosshair state (<code>null</code> permitted,
 *                        but the method does nothing in that case).
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * @param value  the data value.
 * @param datasetIndex  the dataset index.
 * @param transX  the x-value translated to Java2D space.
 * @param transY  the y-value translated to Java2D space.
 * @param orientation  the plot orientation (<code>null</code> not
 *                     permitted).
 *
 * @since 1.0.11
 */
protected void updateCrosshairValues(CategoryCrosshairState crosshairState,
        Comparable rowKey, Comparable columnKey, double value,
        int datasetIndex,
        double transX, double transY, PlotOrientation orientation) {

    if (orientation == null) {
        throw new IllegalArgumentException("Null 'orientation' argument.");
    }

    if (crosshairState != null) {
        if (this.plot.isRangeCrosshairLockedOnData()) {
            // both axes
            crosshairState.updateCrosshairPoint(rowKey, columnKey, value,
                    datasetIndex, transX, transY, orientation);
        }
        else {
            crosshairState.updateCrosshairX(rowKey, columnKey,
                    datasetIndex, transX, orientation);
        }
    }
}
项目:ECG-Viewer    文件:AbstractCategoryItemRenderer.java   
/**
 * Considers the current (x, y) coordinate and updates the crosshair point
 * if it meets the criteria (usually means the (x, y) coordinate is the
 * closest to the anchor point so far).
 *
 * @param crosshairState  the crosshair state (<code>null</code> permitted,
 *                        but the method does nothing in that case).
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * @param value  the data value.
 * @param datasetIndex  the dataset index.
 * @param transX  the x-value translated to Java2D space.
 * @param transY  the y-value translated to Java2D space.
 * @param orientation  the plot orientation (<code>null</code> not
 *                     permitted).
 *
 * @since 1.0.11
 */
protected void updateCrosshairValues(CategoryCrosshairState crosshairState,
        Comparable rowKey, Comparable columnKey, double value,
        int datasetIndex,
        double transX, double transY, PlotOrientation orientation) {

    ParamChecks.nullNotPermitted(orientation, "orientation");

    if (crosshairState != null) {
        if (this.plot.isRangeCrosshairLockedOnData()) {
            // both axes
            crosshairState.updateCrosshairPoint(rowKey, columnKey, value,
                    datasetIndex, transX, transY, orientation);
        }
        else {
            crosshairState.updateCrosshairX(rowKey, columnKey,
                    datasetIndex, transX, orientation);
        }
    }
}
项目:astor    文件:AbstractCategoryItemRenderer.java   
/**
 * Considers the current (x, y) coordinate and updates the crosshair point
 * if it meets the criteria (usually means the (x, y) coordinate is the
 * closest to the anchor point so far).
 *
 * @param crosshairState  the crosshair state (<code>null</code> permitted,
 *                        but the method does nothing in that case).
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * @param value  the data value.
 * @param datasetIndex  the dataset index.
 * @param transX  the x-value translated to Java2D space.
 * @param transY  the y-value translated to Java2D space.
 * @param orientation  the plot orientation (<code>null</code> not
 *                     permitted).
 *
 * @since 1.0.11
 */
protected void updateCrosshairValues(CategoryCrosshairState crosshairState,
        Comparable rowKey, Comparable columnKey, double value,
        int datasetIndex,
        double transX, double transY, PlotOrientation orientation) {

    if (orientation == null) {
        throw new IllegalArgumentException("Null 'orientation' argument.");
    }

    if (crosshairState != null) {
        if (this.plot.isRangeCrosshairLockedOnData()) {
            // both axes
            crosshairState.updateCrosshairPoint(rowKey, columnKey, value,
                    datasetIndex, transX, transY, orientation);
        }
        else {
            crosshairState.updateCrosshairX(rowKey, columnKey,
                    datasetIndex, transX, orientation);
        }
    }
}
项目:group-five    文件:AbstractCategoryItemRenderer.java   
/**
 * Considers the current (x, y) coordinate and updates the crosshair point
 * if it meets the criteria (usually means the (x, y) coordinate is the
 * closest to the anchor point so far).
 *
 * @param crosshairState  the crosshair state (<code>null</code> permitted,
 *                        but the method does nothing in that case).
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * @param value  the data value.
 * @param datasetIndex  the dataset index.
 * @param transX  the x-value translated to Java2D space.
 * @param transY  the y-value translated to Java2D space.
 * @param orientation  the plot orientation (<code>null</code> not
 *                     permitted).
 *
 * @since 1.0.11
 */
protected void updateCrosshairValues(CategoryCrosshairState crosshairState,
        Comparable rowKey, Comparable columnKey, double value,
        int datasetIndex,
        double transX, double transY, PlotOrientation orientation) {

    ParamChecks.nullNotPermitted(orientation, "orientation");

    if (crosshairState != null) {
        if (this.plot.isRangeCrosshairLockedOnData()) {
            // both axes
            crosshairState.updateCrosshairPoint(rowKey, columnKey, value,
                    datasetIndex, transX, transY, orientation);
        }
        else {
            crosshairState.updateCrosshairX(rowKey, columnKey,
                    datasetIndex, transX, orientation);
        }
    }
}
项目:manydesigns.cn    文件:AbstractCategoryItemRenderer.java   
/**
 * Considers the current (x, y) coordinate and updates the crosshair point
 * if it meets the criteria (usually means the (x, y) coordinate is the
 * closest to the anchor point so far).
 *
 * @param crosshairState  the crosshair state (<code>null</code> permitted,
 *                        but the method does nothing in that case).
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * @param value  the data value.
 * @param datasetIndex  the dataset index.
 * @param transX  the x-value translated to Java2D space.
 * @param transY  the y-value translated to Java2D space.
 * @param orientation  the plot orientation (<code>null</code> not
 *                     permitted).
 *
 * @since 1.0.11
 */
protected void updateCrosshairValues(CategoryCrosshairState crosshairState,
        Comparable rowKey, Comparable columnKey, double value,
        int datasetIndex,
        double transX, double transY, PlotOrientation orientation) {

    ParamChecks.nullNotPermitted(orientation, "orientation");

    if (crosshairState != null) {
        if (this.plot.isRangeCrosshairLockedOnData()) {
            // both axes
            crosshairState.updateCrosshairPoint(rowKey, columnKey, value,
                    datasetIndex, transX, transY, orientation);
        }
        else {
            crosshairState.updateCrosshairX(rowKey, columnKey,
                    datasetIndex, transX, orientation);
        }
    }
}
项目:buffer_bci    文件:AbstractCategoryItemRenderer.java   
/**
 * Considers the current (x, y) coordinate and updates the crosshair point
 * if it meets the criteria (usually means the (x, y) coordinate is the
 * closest to the anchor point so far).
 *
 * @param crosshairState  the crosshair state (<code>null</code> permitted,
 *                        but the method does nothing in that case).
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * @param value  the data value.
 * @param datasetIndex  the dataset index.
 * @param transX  the x-value translated to Java2D space.
 * @param transY  the y-value translated to Java2D space.
 * @param orientation  the plot orientation (<code>null</code> not
 *                     permitted).
 *
 * @since 1.0.11
 */
protected void updateCrosshairValues(CategoryCrosshairState crosshairState,
        Comparable rowKey, Comparable columnKey, double value,
        int datasetIndex,
        double transX, double transY, PlotOrientation orientation) {

    ParamChecks.nullNotPermitted(orientation, "orientation");

    if (crosshairState != null) {
        if (this.plot.isRangeCrosshairLockedOnData()) {
            // both axes
            crosshairState.updateCrosshairPoint(rowKey, columnKey, value,
                    datasetIndex, transX, transY, orientation);
        }
        else {
            crosshairState.updateCrosshairX(rowKey, columnKey,
                    datasetIndex, transX, orientation);
        }
    }
}
项目:buffer_bci    文件:AbstractCategoryItemRenderer.java   
/**
 * Considers the current (x, y) coordinate and updates the crosshair point
 * if it meets the criteria (usually means the (x, y) coordinate is the
 * closest to the anchor point so far).
 *
 * @param crosshairState  the crosshair state (<code>null</code> permitted,
 *                        but the method does nothing in that case).
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * @param value  the data value.
 * @param datasetIndex  the dataset index.
 * @param transX  the x-value translated to Java2D space.
 * @param transY  the y-value translated to Java2D space.
 * @param orientation  the plot orientation (<code>null</code> not
 *                     permitted).
 *
 * @since 1.0.11
 */
protected void updateCrosshairValues(CategoryCrosshairState crosshairState,
        Comparable rowKey, Comparable columnKey, double value,
        int datasetIndex,
        double transX, double transY, PlotOrientation orientation) {

    ParamChecks.nullNotPermitted(orientation, "orientation");

    if (crosshairState != null) {
        if (this.plot.isRangeCrosshairLockedOnData()) {
            // both axes
            crosshairState.updateCrosshairPoint(rowKey, columnKey, value,
                    datasetIndex, transX, transY, orientation);
        }
        else {
            crosshairState.updateCrosshairX(rowKey, columnKey,
                    datasetIndex, transX, orientation);
        }
    }
}
项目:proyecto-teoria-control-utn-frro    文件:AbstractCategoryItemRenderer.java   
/**
 * Considers the current (x, y) coordinate and updates the crosshair point
 * if it meets the criteria (usually means the (x, y) coordinate is the
 * closest to the anchor point so far).
 *
 * @param crosshairState  the crosshair state (<code>null</code> permitted,
 *                        but the method does nothing in that case).
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * @param value  the data value.
 * @param datasetIndex  the dataset index.
 * @param transX  the x-value translated to Java2D space.
 * @param transY  the y-value translated to Java2D space.
 * @param orientation  the plot orientation (<code>null</code> not
 *                     permitted).
 *
 * @since 1.0.11
 */
protected void updateCrosshairValues(CategoryCrosshairState crosshairState,
        Comparable rowKey, Comparable columnKey, double value,
        int datasetIndex,
        double transX, double transY, PlotOrientation orientation) {

    ParamChecks.nullNotPermitted(orientation, "orientation");

    if (crosshairState != null) {
        if (this.plot.isRangeCrosshairLockedOnData()) {
            // both axes
            crosshairState.updateCrosshairPoint(rowKey, columnKey, value,
                    datasetIndex, transX, transY, orientation);
        }
        else {
            crosshairState.updateCrosshairX(rowKey, columnKey,
                    datasetIndex, transX, orientation);
        }
    }
}
项目:Memetic-Algorithm-for-TSP    文件:AbstractCategoryItemRenderer.java   
/**
 * Considers the current (x, y) coordinate and updates the crosshair point
 * if it meets the criteria (usually means the (x, y) coordinate is the
 * closest to the anchor point so far).
 *
 * @param crosshairState  the crosshair state (<code>null</code> permitted,
 *                        but the method does nothing in that case).
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * @param value  the data value.
 * @param datasetIndex  the dataset index.
 * @param transX  the x-value translated to Java2D space.
 * @param transY  the y-value translated to Java2D space.
 * @param orientation  the plot orientation (<code>null</code> not
 *                     permitted).
 *
 * @since 1.0.11
 */
protected void updateCrosshairValues(CategoryCrosshairState crosshairState,
        Comparable rowKey, Comparable columnKey, double value,
        int datasetIndex,
        double transX, double transY, PlotOrientation orientation) {

    ParamChecks.nullNotPermitted(orientation, "orientation");

    if (crosshairState != null) {
        if (this.plot.isRangeCrosshairLockedOnData()) {
            // both axes
            crosshairState.updateCrosshairPoint(rowKey, columnKey, value,
                    datasetIndex, transX, transY, orientation);
        }
        else {
            crosshairState.updateCrosshairX(rowKey, columnKey,
                    datasetIndex, transX, orientation);
        }
    }
}
项目:ccu-historian    文件:CategoryItemRendererState.java   
/**
 * Returns the crosshair state, if any.
 *
 * @return The crosshair state (possibly <code>null</code>).
 *
 * @since 1.0.11
 *
 * @see #setCrosshairState(CategoryCrosshairState)
 */
public CategoryCrosshairState getCrosshairState() {
    return this.crosshairState;
}
项目:ccu-historian    文件:CategoryItemRendererState.java   
/**
 * Sets the crosshair state.
 *
 * @param state  the new state (<code>null</code> permitted).
 *
 * @since 1.0.11
 *
 * @see #getCrosshairState()
 */
public void setCrosshairState(CategoryCrosshairState state) {
    this.crosshairState = state;
}
项目:jfreechart    文件:CategoryItemRendererState.java   
/**
 * Returns the crosshair state, if any.
 *
 * @return The crosshair state (possibly {@code null}).
 *
 * @since 1.0.11
 *
 * @see #setCrosshairState(CategoryCrosshairState)
 */
public CategoryCrosshairState getCrosshairState() {
    return this.crosshairState;
}
项目:jfreechart    文件:CategoryItemRendererState.java   
/**
 * Sets the crosshair state.
 *
 * @param state  the new state ({@code null} permitted).
 *
 * @since 1.0.11
 *
 * @see #getCrosshairState()
 */
public void setCrosshairState(CategoryCrosshairState state) {
    this.crosshairState = state;
}
项目:aya-lang    文件:CategoryItemRendererState.java   
/**
 * Returns the crosshair state, if any.
 *
 * @return The crosshair state (possibly <code>null</code>).
 *
 * @since 1.0.11
 *
 * @see #setCrosshairState(CategoryCrosshairState)
 */
public CategoryCrosshairState getCrosshairState() {
    return this.crosshairState;
}
项目:aya-lang    文件:CategoryItemRendererState.java   
/**
 * Sets the crosshair state.
 *
 * @param state  the new state (<code>null</code> permitted).
 *
 * @since 1.0.11
 *
 * @see #getCrosshairState()
 */
public void setCrosshairState(CategoryCrosshairState state) {
    this.crosshairState = state;
}
项目:HTML5_WebSite    文件:CategoryItemRendererState.java   
/**
 * Returns the crosshair state, if any.
 *
 * @return The crosshair state (possibly <code>null</code>).
 *
 * @since 1.0.11
 *
 * @see #setCrosshairState(CategoryCrosshairState)
 */
public CategoryCrosshairState getCrosshairState() {
    return this.crosshairState;
}
项目:HTML5_WebSite    文件:CategoryItemRendererState.java   
/**
 * Sets the crosshair state.
 *
 * @param state  the new state (<code>null</code> permitted).
 *
 * @since 1.0.11
 *
 * @see #getCrosshairState()
 */
public void setCrosshairState(CategoryCrosshairState state) {
    this.crosshairState = state;
}
项目:populus    文件:CategoryItemRendererState.java   
/**
 * Returns the crosshair state, if any.
 *
 * @return The crosshair state (possibly <code>null</code>).
 *
 * @since 1.0.11
 *
 * @see #setCrosshairState(CategoryCrosshairState)
 */
public CategoryCrosshairState getCrosshairState() {
    return this.crosshairState;
}
项目:populus    文件:CategoryItemRendererState.java   
/**
 * Sets the crosshair state.
 *
 * @param state  the new state (<code>null</code> permitted).
 *
 * @since 1.0.11
 *
 * @see #getCrosshairState()
 */
public void setCrosshairState(CategoryCrosshairState state) {
    this.crosshairState = state;
}
项目:PI    文件:CategoryItemRendererState.java   
/**
 * Returns the crosshair state, if any.
 *
 * @return The crosshair state (possibly <code>null</code>).
 *
 * @since 1.0.11
 *
 * @see #setCrosshairState(CategoryCrosshairState)
 */
public CategoryCrosshairState getCrosshairState() {
    return this.crosshairState;
}
项目:PI    文件:CategoryItemRendererState.java   
/**
 * Sets the crosshair state.
 *
 * @param state  the new state (<code>null</code> permitted).
 *
 * @since 1.0.11
 *
 * @see #getCrosshairState()
 */
public void setCrosshairState(CategoryCrosshairState state) {
    this.crosshairState = state;
}
项目:ECG-Viewer    文件:CategoryItemRendererState.java   
/**
 * Returns the crosshair state, if any.
 *
 * @return The crosshair state (possibly <code>null</code>).
 *
 * @since 1.0.11
 *
 * @see #setCrosshairState(CategoryCrosshairState)
 */
public CategoryCrosshairState getCrosshairState() {
    return this.crosshairState;
}
项目:ECG-Viewer    文件:CategoryItemRendererState.java   
/**
 * Sets the crosshair state.
 *
 * @param state  the new state (<code>null</code> permitted).
 *
 * @since 1.0.11
 *
 * @see #getCrosshairState()
 */
public void setCrosshairState(CategoryCrosshairState state) {
    this.crosshairState = state;
}
项目:astor    文件:CategoryItemRendererState.java   
/**
 * Returns the crosshair state, if any.
 *
 * @return The crosshair state (possibly <code>null</code>).
 *
 * @since 1.0.11
 *
 * @see #setCrosshairState(CategoryCrosshairState)
 */
public CategoryCrosshairState getCrosshairState() {
    return this.crosshairState;
}
项目:astor    文件:CategoryItemRendererState.java   
/**
 * Sets the crosshair state.
 *
 * @param state  the new state (<code>null</code> permitted).
 *
 * @since 1.0.11
 *
 * @see #getCrosshairState()
 */
public void setCrosshairState(CategoryCrosshairState state) {
    this.crosshairState = state;
}
项目:group-five    文件:CategoryItemRendererState.java   
/**
 * Returns the crosshair state, if any.
 *
 * @return The crosshair state (possibly <code>null</code>).
 *
 * @since 1.0.11
 *
 * @see #setCrosshairState(CategoryCrosshairState)
 */
public CategoryCrosshairState getCrosshairState() {
    return this.crosshairState;
}
项目:group-five    文件:CategoryItemRendererState.java   
/**
 * Sets the crosshair state.
 *
 * @param state  the new state (<code>null</code> permitted).
 *
 * @since 1.0.11
 *
 * @see #getCrosshairState()
 */
public void setCrosshairState(CategoryCrosshairState state) {
    this.crosshairState = state;
}
项目:manydesigns.cn    文件:CategoryItemRendererState.java   
/**
 * Returns the crosshair state, if any.
 *
 * @return The crosshair state (possibly <code>null</code>).
 *
 * @since 1.0.11
 *
 * @see #setCrosshairState(CategoryCrosshairState)
 */
public CategoryCrosshairState getCrosshairState() {
    return this.crosshairState;
}
项目:manydesigns.cn    文件:CategoryItemRendererState.java   
/**
 * Sets the crosshair state.
 *
 * @param state  the new state (<code>null</code> permitted).
 *
 * @since 1.0.11
 *
 * @see #getCrosshairState()
 */
public void setCrosshairState(CategoryCrosshairState state) {
    this.crosshairState = state;
}
项目:buffer_bci    文件:CategoryItemRendererState.java   
/**
 * Returns the crosshair state, if any.
 *
 * @return The crosshair state (possibly <code>null</code>).
 *
 * @since 1.0.11
 *
 * @see #setCrosshairState(CategoryCrosshairState)
 */
public CategoryCrosshairState getCrosshairState() {
    return this.crosshairState;
}
项目:buffer_bci    文件:CategoryItemRendererState.java   
/**
 * Sets the crosshair state.
 *
 * @param state  the new state (<code>null</code> permitted).
 *
 * @since 1.0.11
 *
 * @see #getCrosshairState()
 */
public void setCrosshairState(CategoryCrosshairState state) {
    this.crosshairState = state;
}
项目:buffer_bci    文件:CategoryItemRendererState.java   
/**
 * Returns the crosshair state, if any.
 *
 * @return The crosshair state (possibly <code>null</code>).
 *
 * @since 1.0.11
 *
 * @see #setCrosshairState(CategoryCrosshairState)
 */
public CategoryCrosshairState getCrosshairState() {
    return this.crosshairState;
}
项目:buffer_bci    文件:CategoryItemRendererState.java   
/**
 * Sets the crosshair state.
 *
 * @param state  the new state (<code>null</code> permitted).
 *
 * @since 1.0.11
 *
 * @see #getCrosshairState()
 */
public void setCrosshairState(CategoryCrosshairState state) {
    this.crosshairState = state;
}
项目:proyecto-teoria-control-utn-frro    文件:CategoryItemRendererState.java   
/**
 * Returns the crosshair state, if any.
 *
 * @return The crosshair state (possibly <code>null</code>).
 *
 * @since 1.0.11
 *
 * @see #setCrosshairState(CategoryCrosshairState)
 */
public CategoryCrosshairState getCrosshairState() {
    return this.crosshairState;
}
项目:proyecto-teoria-control-utn-frro    文件:CategoryItemRendererState.java   
/**
 * Sets the crosshair state.
 *
 * @param state  the new state (<code>null</code> permitted).
 *
 * @since 1.0.11
 *
 * @see #getCrosshairState()
 */
public void setCrosshairState(CategoryCrosshairState state) {
    this.crosshairState = state;
}