1/*
2 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24/*
25 * @test
26 * @bug 4358979
27 * @summary Tests RadialGradientPaint encoding
28 * @author Sergey Malenkov
29 */
30
31import java.awt.Color;
32import java.awt.RadialGradientPaint;
33import java.awt.geom.AffineTransform;
34import java.awt.geom.Point2D;
35
36import static java.awt.MultipleGradientPaint.ColorSpaceType.LINEAR_RGB;
37import static java.awt.MultipleGradientPaint.CycleMethod.REFLECT;
38
39public final class java_awt_RadialGradientPaint extends AbstractTest<RadialGradientPaint> {
40    public static void main(String[] args) {
41        new java_awt_RadialGradientPaint().test(true);
42    }
43
44    protected RadialGradientPaint getObject() {
45        float[] f = { 0.1f, 0.2f, 0.3f, 0.4f, 0.5f, 0.6f };
46        Color[] c = { Color.BLUE, Color.GREEN, Color.RED, Color.BLUE, Color.GREEN, Color.RED };
47        return new RadialGradientPaint(f[0], f[1], f[2], f, c);
48    }
49
50    protected RadialGradientPaint getAnotherObject() {
51        return null; /* TODO: could not update property
52        float[] f = { 0.4f, 0.5f, 0.6f, 0.7f, 0.8f, 0.9f };
53        Color[] c = { Color.RED, Color.GREEN, Color.BLUE, Color.RED, Color.GREEN, Color.BLUE };
54        return new RadialGradientPaint(
55                new Point2D.Float(f[0], f[1]), 100.0f,
56                new Point2D.Float(f[2], f[3]),
57                f, c, REFLECT, LINEAR_RGB,
58                new AffineTransform(f));*/
59    }
60}
61