rectangle2dreadhandler.java

来自「JfreeChart 常用图表例子」· Java 代码 · 共 68 行

JAVA
68
字号
package org.jfree.xml.parser.coretypes;import java.awt.geom.Rectangle2D;import org.jfree.xml.parser.AbstractXmlReadHandler;import org.xml.sax.Attributes;import org.xml.sax.SAXException;/** * A handler for reading a {@link Rectangle2D} object. */public class Rectangle2DReadHandler extends AbstractXmlReadHandler  {        /** The rectangle being constructed. */    private Rectangle2D rectangle;    /**     * Default constructor.     */    public Rectangle2DReadHandler() {        super();    }    /**     * Begins parsing.     *      * @param attrs  the attributes.     *      * @throws SAXException if there is a parsing error.     */    protected void startParsing(final Attributes attrs) throws SAXException {        final String type = attrs.getValue("type");        this.rectangle = createRect(type);        final String x = attrs.getValue("x");        final String y = attrs.getValue("y");        final String w = attrs.getValue("width");        final String h = attrs.getValue("height");        this.rectangle.setRect(            Double.parseDouble(x), Double.parseDouble(y),            Double.parseDouble(w), Double.parseDouble(h)        );    }    /**     * Creates a rectangle.     *      * @param type  the type ('float' or 'double').     *      * @return The rectangle.     */    private Rectangle2D createRect(final String type) {        if ("float".equals(type)) {            return new Rectangle2D.Float();        }        return new Rectangle2D.Double();    }    /**     * Returns the object under construction.     *      * @return The object.     */    public Object getObject() {        return this.rectangle;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?