Ellipse.java revision 8845:4be14673b9bf
1284990Scy/*
2284990Scy * Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved.
3284990Scy * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4284990Scy *
5284990Scy * This code is free software; you can redistribute it and/or modify it
6284990Scy * under the terms of the GNU General Public License version 2 only, as
7284990Scy * published by the Free Software Foundation.  Oracle designates this
8284990Scy * particular file as subject to the "Classpath" exception as provided
9284990Scy * by Oracle in the LICENSE file that accompanied this code.
10284990Scy *
11284990Scy * This code is distributed in the hope that it will be useful, but WITHOUT
12284990Scy * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13284990Scy * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14284990Scy * version 2 for more details (a copy is included in the LICENSE file that
15284990Scy * accompanied this code).
16284990Scy *
17284990Scy * You should have received a copy of the GNU General Public License version
18284990Scy * 2 along with this work; if not, write to the Free Software Foundation,
19284990Scy * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20284990Scy *
21284990Scy * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22284990Scy * or visit www.oracle.com if you need additional information or have any
23284990Scy * questions.
24284990Scy */
25284990Scy
26284990Scypackage build.tools.generatenimbus;
27284990Scy
28284990Scyimport javax.xml.bind.annotation.XmlAttribute;
29284990Scy
30284990Scyclass Ellipse extends Shape {
31284990Scy    @XmlAttribute private double x1;
32284990Scy    public double getX1() { return x1; }
33284990Scy
34284990Scy    @XmlAttribute private double x2;
35284990Scy    public double getX2() { return x2; }
36284990Scy
37284990Scy    @XmlAttribute private double y1;
38284990Scy    public double getY1() { return y1; }
39284990Scy
40284990Scy    @XmlAttribute private double y2;
41284990Scy    public double getY2() { return y2; }
42284990Scy}
43284990Scy