Java 类org.jfree.chart.util.XYCoordinateType 实例源码

项目:HTML5_WebSite    文件:XYTitleAnnotation.java   
/**
 * Creates a new annotation to be displayed at the specified (x, y)
 * location.
 *
 * @param x  the x-coordinate (in data space).
 * @param y  the y-coordinate (in data space).
 * @param title  the title (<code>null</code> not permitted).
 * @param anchor  the title anchor (<code>null</code> not permitted).
 */
public XYTitleAnnotation(double x, double y, Title title,
        RectangleAnchor anchor) {
    if (title == null) {
        throw new IllegalArgumentException("Null 'title' argument.");
    }
    if (anchor == null) {
        throw new IllegalArgumentException("Null 'anchor' argument.");
    }
    this.coordinateType = XYCoordinateType.RELATIVE;
    this.x = x;
    this.y = y;
    this.maxWidth = 0.0;
    this.maxHeight = 0.0;
    this.title = title;
    this.anchor = anchor;
}
项目:PI    文件:XYTitleAnnotation.java   
/**
 * Creates a new annotation to be displayed at the specified (x, y)
 * location.
 *
 * @param x  the x-coordinate (in data space).
 * @param y  the y-coordinate (in data space).
 * @param title  the title (<code>null</code> not permitted).
 * @param anchor  the title anchor (<code>null</code> not permitted).
 */
public XYTitleAnnotation(double x, double y, Title title,
        RectangleAnchor anchor) {
    if (title == null) {
        throw new IllegalArgumentException("Null 'title' argument.");
    }
    if (anchor == null) {
        throw new IllegalArgumentException("Null 'anchor' argument.");
    }
    this.coordinateType = XYCoordinateType.RELATIVE;
    this.x = x;
    this.y = y;
    this.maxWidth = 0.0;
    this.maxHeight = 0.0;
    this.title = title;
    this.anchor = anchor;
}
项目:astor    文件:XYTitleAnnotation.java   
/**
 * Creates a new annotation to be displayed at the specified (x, y)
 * location.
 *
 * @param x  the x-coordinate (in data space).
 * @param y  the y-coordinate (in data space).
 * @param title  the title (<code>null</code> not permitted).
 * @param anchor  the title anchor (<code>null</code> not permitted).
 */
public XYTitleAnnotation(double x, double y, Title title,
        RectangleAnchor anchor) {
    super();
    if (title == null) {
        throw new IllegalArgumentException("Null 'title' argument.");
    }
    if (anchor == null) {
        throw new IllegalArgumentException("Null 'anchor' argument.");
    }
    this.coordinateType = XYCoordinateType.RELATIVE;
    this.x = x;
    this.y = y;
    this.maxWidth = 0.0;
    this.maxHeight = 0.0;
    this.title = title;
    this.anchor = anchor;
}
项目:ccu-historian    文件:XYTitleAnnotation.java   
/**
 * Creates a new annotation to be displayed at the specified (x, y)
 * location.
 *
 * @param x  the x-coordinate (in data space).
 * @param y  the y-coordinate (in data space).
 * @param title  the title (<code>null</code> not permitted).
 * @param anchor  the title anchor (<code>null</code> not permitted).
 */
public XYTitleAnnotation(double x, double y, Title title,
        RectangleAnchor anchor) {
    super();
    ParamChecks.nullNotPermitted(title, "title");
    ParamChecks.nullNotPermitted(anchor, "anchor");
    this.coordinateType = XYCoordinateType.RELATIVE;
    this.x = x;
    this.y = y;
    this.maxWidth = 0.0;
    this.maxHeight = 0.0;
    this.title = title;
    this.anchor = anchor;
}
项目:jfreechart    文件:XYTitleAnnotation.java   
/**
 * Creates a new annotation to be displayed at the specified (x, y)
 * location.
 *
 * @param x  the x-coordinate (in data space).
 * @param y  the y-coordinate (in data space).
 * @param title  the title ({@code null} not permitted).
 * @param anchor  the title anchor ({@code null} not permitted).
 */
public XYTitleAnnotation(double x, double y, Title title,
        RectangleAnchor anchor) {
    super();
    Args.nullNotPermitted(title, "title");
    Args.nullNotPermitted(anchor, "anchor");
    this.coordinateType = XYCoordinateType.RELATIVE;
    this.x = x;
    this.y = y;
    this.maxWidth = 0.0;
    this.maxHeight = 0.0;
    this.title = title;
    this.anchor = anchor;
}
项目:aya-lang    文件:XYTitleAnnotation.java   
/**
 * Creates a new annotation to be displayed at the specified (x, y)
 * location.
 *
 * @param x  the x-coordinate (in data space).
 * @param y  the y-coordinate (in data space).
 * @param title  the title (<code>null</code> not permitted).
 * @param anchor  the title anchor (<code>null</code> not permitted).
 */
public XYTitleAnnotation(double x, double y, Title title,
        RectangleAnchor anchor) {
    super();
    ParamChecks.nullNotPermitted(title, "title");
    ParamChecks.nullNotPermitted(anchor, "anchor");
    this.coordinateType = XYCoordinateType.RELATIVE;
    this.x = x;
    this.y = y;
    this.maxWidth = 0.0;
    this.maxHeight = 0.0;
    this.title = title;
    this.anchor = anchor;
}
项目:populus    文件:XYTitleAnnotation.java   
/**
 * Creates a new annotation to be displayed at the specified (x, y)
 * location.
 *
 * @param x  the x-coordinate (in data space).
 * @param y  the y-coordinate (in data space).
 * @param title  the title (<code>null</code> not permitted).
 * @param anchor  the title anchor (<code>null</code> not permitted).
 */
public XYTitleAnnotation(double x, double y, Title title,
        RectangleAnchor anchor) {
    super();
    ParamChecks.nullNotPermitted(title, "title");
    ParamChecks.nullNotPermitted(anchor, "anchor");
    this.coordinateType = XYCoordinateType.RELATIVE;
    this.x = x;
    this.y = y;
    this.maxWidth = 0.0;
    this.maxHeight = 0.0;
    this.title = title;
    this.anchor = anchor;
}
项目:ECG-Viewer    文件:XYTitleAnnotation.java   
/**
 * Creates a new annotation to be displayed at the specified (x, y)
 * location.
 *
 * @param x  the x-coordinate (in data space).
 * @param y  the y-coordinate (in data space).
 * @param title  the title (<code>null</code> not permitted).
 * @param anchor  the title anchor (<code>null</code> not permitted).
 */
public XYTitleAnnotation(double x, double y, Title title,
        RectangleAnchor anchor) {
    super();
    ParamChecks.nullNotPermitted(title, "title");
    ParamChecks.nullNotPermitted(anchor, "anchor");
    this.coordinateType = XYCoordinateType.RELATIVE;
    this.x = x;
    this.y = y;
    this.maxWidth = 0.0;
    this.maxHeight = 0.0;
    this.title = title;
    this.anchor = anchor;
}
项目:group-five    文件:XYTitleAnnotation.java   
/**
 * Creates a new annotation to be displayed at the specified (x, y)
 * location.
 *
 * @param x  the x-coordinate (in data space).
 * @param y  the y-coordinate (in data space).
 * @param title  the title (<code>null</code> not permitted).
 * @param anchor  the title anchor (<code>null</code> not permitted).
 */
public XYTitleAnnotation(double x, double y, Title title,
        RectangleAnchor anchor) {
    super();
    ParamChecks.nullNotPermitted(title, "title");
    ParamChecks.nullNotPermitted(anchor, "anchor");
    this.coordinateType = XYCoordinateType.RELATIVE;
    this.x = x;
    this.y = y;
    this.maxWidth = 0.0;
    this.maxHeight = 0.0;
    this.title = title;
    this.anchor = anchor;
}
项目:manydesigns.cn    文件:XYTitleAnnotation.java   
/**
 * Creates a new annotation to be displayed at the specified (x, y)
 * location.
 *
 * @param x  the x-coordinate (in data space).
 * @param y  the y-coordinate (in data space).
 * @param title  the title (<code>null</code> not permitted).
 * @param anchor  the title anchor (<code>null</code> not permitted).
 */
public XYTitleAnnotation(double x, double y, Title title,
        RectangleAnchor anchor) {
    super();
    ParamChecks.nullNotPermitted(title, "title");
    ParamChecks.nullNotPermitted(anchor, "anchor");
    this.coordinateType = XYCoordinateType.RELATIVE;
    this.x = x;
    this.y = y;
    this.maxWidth = 0.0;
    this.maxHeight = 0.0;
    this.title = title;
    this.anchor = anchor;
}
项目:buffer_bci    文件:XYTitleAnnotation.java   
/**
 * Creates a new annotation to be displayed at the specified (x, y)
 * location.
 *
 * @param x  the x-coordinate (in data space).
 * @param y  the y-coordinate (in data space).
 * @param title  the title (<code>null</code> not permitted).
 * @param anchor  the title anchor (<code>null</code> not permitted).
 */
public XYTitleAnnotation(double x, double y, Title title,
        RectangleAnchor anchor) {
    super();
    ParamChecks.nullNotPermitted(title, "title");
    ParamChecks.nullNotPermitted(anchor, "anchor");
    this.coordinateType = XYCoordinateType.RELATIVE;
    this.x = x;
    this.y = y;
    this.maxWidth = 0.0;
    this.maxHeight = 0.0;
    this.title = title;
    this.anchor = anchor;
}
项目:buffer_bci    文件:XYTitleAnnotation.java   
/**
 * Creates a new annotation to be displayed at the specified (x, y)
 * location.
 *
 * @param x  the x-coordinate (in data space).
 * @param y  the y-coordinate (in data space).
 * @param title  the title (<code>null</code> not permitted).
 * @param anchor  the title anchor (<code>null</code> not permitted).
 */
public XYTitleAnnotation(double x, double y, Title title,
        RectangleAnchor anchor) {
    super();
    ParamChecks.nullNotPermitted(title, "title");
    ParamChecks.nullNotPermitted(anchor, "anchor");
    this.coordinateType = XYCoordinateType.RELATIVE;
    this.x = x;
    this.y = y;
    this.maxWidth = 0.0;
    this.maxHeight = 0.0;
    this.title = title;
    this.anchor = anchor;
}
项目:proyecto-teoria-control-utn-frro    文件:XYTitleAnnotation.java   
/**
 * Creates a new annotation to be displayed at the specified (x, y)
 * location.
 *
 * @param x  the x-coordinate (in data space).
 * @param y  the y-coordinate (in data space).
 * @param title  the title (<code>null</code> not permitted).
 * @param anchor  the title anchor (<code>null</code> not permitted).
 */
public XYTitleAnnotation(double x, double y, Title title,
        RectangleAnchor anchor) {
    super();
    ParamChecks.nullNotPermitted(title, "title");
    ParamChecks.nullNotPermitted(anchor, "anchor");
    this.coordinateType = XYCoordinateType.RELATIVE;
    this.x = x;
    this.y = y;
    this.maxWidth = 0.0;
    this.maxHeight = 0.0;
    this.title = title;
    this.anchor = anchor;
}
项目:Memetic-Algorithm-for-TSP    文件:XYTitleAnnotation.java   
/**
 * Creates a new annotation to be displayed at the specified (x, y)
 * location.
 *
 * @param x  the x-coordinate (in data space).
 * @param y  the y-coordinate (in data space).
 * @param title  the title (<code>null</code> not permitted).
 * @param anchor  the title anchor (<code>null</code> not permitted).
 */
public XYTitleAnnotation(double x, double y, Title title,
        RectangleAnchor anchor) {
    super();
    ParamChecks.nullNotPermitted(title, "title");
    ParamChecks.nullNotPermitted(anchor, "anchor");
    this.coordinateType = XYCoordinateType.RELATIVE;
    this.x = x;
    this.y = y;
    this.maxWidth = 0.0;
    this.maxHeight = 0.0;
    this.title = title;
    this.anchor = anchor;
}
项目:ccu-historian    文件:XYTitleAnnotation.java   
/**
 * Returns the coordinate type (set in the constructor).
 *
 * @return The coordinate type (never <code>null</code>).
 */
public XYCoordinateType getCoordinateType() {
    return this.coordinateType;
}
项目:jfreechart    文件:XYTitleAnnotation.java   
/**
 * Returns the coordinate type (set in the constructor).
 *
 * @return The coordinate type (never {@code null}).
 */
public XYCoordinateType getCoordinateType() {
    return this.coordinateType;
}
项目:aya-lang    文件:XYTitleAnnotation.java   
/**
 * Returns the coordinate type (set in the constructor).
 *
 * @return The coordinate type (never <code>null</code>).
 */
public XYCoordinateType getCoordinateType() {
    return this.coordinateType;
}
项目:HTML5_WebSite    文件:XYTitleAnnotation.java   
/**
 * Returns the coordinate type (set in the constructor).
 *
 * @return The coordinate type (never <code>null</code>).
 */
public XYCoordinateType getCoordinateType() {
    return this.coordinateType;
}
项目:populus    文件:XYTitleAnnotation.java   
/**
 * Returns the coordinate type (set in the constructor).
 *
 * @return The coordinate type (never <code>null</code>).
 */
public XYCoordinateType getCoordinateType() {
    return this.coordinateType;
}
项目:PI    文件:XYTitleAnnotation.java   
/**
 * Returns the coordinate type (set in the constructor).
 *
 * @return The coordinate type (never <code>null</code>).
 */
public XYCoordinateType getCoordinateType() {
    return this.coordinateType;
}
项目:ECG-Viewer    文件:XYTitleAnnotation.java   
/**
 * Returns the coordinate type (set in the constructor).
 *
 * @return The coordinate type (never <code>null</code>).
 */
public XYCoordinateType getCoordinateType() {
    return this.coordinateType;
}
项目:astor    文件:XYTitleAnnotation.java   
/**
 * Returns the coordinate type (set in the constructor).
 *
 * @return The coordinate type (never <code>null</code>).
 */
public XYCoordinateType getCoordinateType() {
    return this.coordinateType;
}
项目:group-five    文件:XYTitleAnnotation.java   
/**
 * Returns the coordinate type (set in the constructor).
 *
 * @return The coordinate type (never <code>null</code>).
 */
public XYCoordinateType getCoordinateType() {
    return this.coordinateType;
}
项目:manydesigns.cn    文件:XYTitleAnnotation.java   
/**
 * Returns the coordinate type (set in the constructor).
 *
 * @return The coordinate type (never <code>null</code>).
 */
public XYCoordinateType getCoordinateType() {
    return this.coordinateType;
}
项目:buffer_bci    文件:XYTitleAnnotation.java   
/**
 * Returns the coordinate type (set in the constructor).
 *
 * @return The coordinate type (never <code>null</code>).
 */
public XYCoordinateType getCoordinateType() {
    return this.coordinateType;
}
项目:buffer_bci    文件:XYTitleAnnotation.java   
/**
 * Returns the coordinate type (set in the constructor).
 *
 * @return The coordinate type (never <code>null</code>).
 */
public XYCoordinateType getCoordinateType() {
    return this.coordinateType;
}
项目:proyecto-teoria-control-utn-frro    文件:XYTitleAnnotation.java   
/**
 * Returns the coordinate type (set in the constructor).
 *
 * @return The coordinate type (never <code>null</code>).
 */
public XYCoordinateType getCoordinateType() {
    return this.coordinateType;
}
项目:Memetic-Algorithm-for-TSP    文件:XYTitleAnnotation.java   
/**
 * Returns the coordinate type (set in the constructor).
 *
 * @return The coordinate type (never <code>null</code>).
 */
public XYCoordinateType getCoordinateType() {
    return this.coordinateType;
}