EMMA Coverage Report (generated Tue May 18 22:20:04 CDT 2004)
[all classes][default package]

COVERAGE SUMMARY FOR SOURCE FILE [ColorChooserDemo.java]

nameclass, %method, %block, %line, %
ColorChooserDemo.java100% (3/3)75%  (6/8)75%  (304/404)74%  (54/73)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ColorChooserDemo$1100% (1/1)50%  (1/2)6%   (6/98)6%   (1/17)
actionPerformed (ActionEvent): void 0%   (0/1)0%   (0/92)0%   (0/16)
ColorChooserDemo$1 (ColorChooserDemo): void 100% (1/1)100% (6/6)100% (1/1)
     
class ColorChooserDemo100% (1/1)50%  (1/2)96%  (211/219)92%  (35/38)
main (String []): void 0%   (0/1)0%   (0/8)0%   (0/3)
ColorChooserDemo (SwingSet2): void 100% (1/1)100% (211/211)100% (35/35)
     
class ColorChooserDemo$ColorSwatch100% (1/1)100% (4/4)100% (87/87)100% (18/18)
ColorChooserDemo$ColorSwatch (ColorChooserDemo, String, BezierAnimationPanel)... 100% (1/1)100% (12/12)100% (4/4)
getIconHeight (): int 100% (1/1)100% (2/2)100% (1/1)
getIconWidth (): int 100% (1/1)100% (2/2)100% (1/1)
paintIcon (Component, Graphics, int, int): void 100% (1/1)100% (71/71)100% (12/12)

1/*
2 * Copyright (c) 2003 Sun Microsystems, Inc. All  Rights Reserved.
3 * 
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 
8 * -Redistributions of source code must retain the above copyright
9 *  notice, this list of conditions and the following disclaimer.
10 * 
11 * -Redistribution in binary form must reproduct the above copyright
12 *  notice, this list of conditions and the following disclaimer in
13 *  the documentation and/or other materials provided with the distribution.
14 * 
15 * Neither the name of Sun Microsystems, Inc. or the names of contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 * 
19 * This software is provided "AS IS," without a warranty of any kind. ALL
20 * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
21 * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
22 * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT
23 * BE LIABLE FOR ANY DAMAGES OR LIABILITIES SUFFERED BY LICENSEE AS A RESULT
24 * OF OR RELATING TO USE, MODIFICATION OR DISTRIBUTION OF THE SOFTWARE OR ITS
25 * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
26 * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
27 * INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY
28 * OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, EVEN
29 * IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
30 * 
31 * You acknowledge that Software is not designed, licensed or intended for
32 * use in the design, construction, operation or maintenance of any nuclear
33 * facility.
34 */
35 
36/*
37 * @(#)ColorChooserDemo.java        1.7 03/01/23
38 */
39 
40 
41import javax.swing.*;
42import javax.swing.event.*;
43import javax.swing.text.*;
44import javax.swing.border.*;
45import javax.swing.colorchooser.*;
46import javax.swing.filechooser.*;
47import javax.accessibility.*;
48 
49import java.awt.*;
50import java.awt.event.*;
51import java.beans.*;
52import java.util.*;
53import java.io.*;
54import java.applet.*;
55import java.net.*;
56 
57/**
58 * JColorChooserDemo
59 *
60 * @version 1.1 07/16/99
61 * @author Jeff Dinkins
62 */
63public class ColorChooserDemo extends DemoModule {
64 
65    BezierAnimationPanel bezAnim;
66    JButton outerColorButton = null;
67    JButton backgroundColorButton = null;
68    JButton gradientAButton = null;
69    JButton gradientBButton = null;
70 
71    /**
72     * main method allows us to run as a standalone demo.
73     */
74    public static void main(String[] args) {
75        ColorChooserDemo demo = new ColorChooserDemo(null);
76        demo.mainImpl();
77    }
78 
79 
80    /**
81     * ColorChooserDemo Constructor
82     */
83    public ColorChooserDemo(SwingSet2 swingset) {
84        // Set the title for this demo, and an icon used to represent this
85        // demo inside the SwingSet2 app.
86        super(swingset, "ColorChooserDemo", "toolbar/JColorChooser.gif");
87 
88        // Create the bezier animation panel to put in the center of the panel.
89        bezAnim = new BezierAnimationPanel();
90 
91        outerColorButton = new JButton(getString("ColorChooserDemo.outer_line"));
92        outerColorButton.setIcon(new ColorSwatch("OuterLine", bezAnim));
93 
94        backgroundColorButton = new JButton(getString("ColorChooserDemo.background"));
95        backgroundColorButton.setIcon(new ColorSwatch("Background", bezAnim));
96 
97        gradientAButton = new JButton(getString("ColorChooserDemo.grad_a"));
98        gradientAButton.setIcon(new ColorSwatch("GradientA", bezAnim));
99 
100        gradientBButton = new JButton(getString("ColorChooserDemo.grad_b"));
101        gradientBButton.setIcon(new ColorSwatch("GradientB", bezAnim));
102 
103        ActionListener l = new ActionListener() {
104            public void actionPerformed(ActionEvent e) {
105                Color current = bezAnim.getOuterColor();
106 
107                if(e.getSource() == backgroundColorButton) {
108                    current = bezAnim.getBackgroundColor();
109                } else if(e.getSource() == gradientAButton) {
110                    current = bezAnim.getGradientColorA();
111                } else if(e.getSource() == gradientBButton) {
112                    current = bezAnim.getGradientColorB();
113                }
114 
115                // Bring up a color chooser
116                Color c = JColorChooser.showDialog(
117                    getDemoPanel(),
118                    getString("ColorChooserDemo.chooser_title"),
119                    current
120                );
121 
122                if(e.getSource() == outerColorButton) {
123                    bezAnim.setOuterColor(c);
124                } else if(e.getSource() == backgroundColorButton) {
125                    bezAnim.setBackgroundColor(c);
126                } else if(e.getSource() == gradientAButton) {
127                    bezAnim.setGradientColorA(c);
128                } else {
129                    bezAnim.setGradientColorB(c);
130                }
131            }
132        };
133 
134        outerColorButton.addActionListener(l);
135        backgroundColorButton.addActionListener(l);
136        gradientAButton.addActionListener(l);
137        gradientBButton.addActionListener(l);
138 
139        // Add everything to the panel
140        JPanel p = getDemoPanel();
141        p.setLayout(new BoxLayout(p, BoxLayout.Y_AXIS));
142 
143        // Add control buttons
144        JPanel buttonPanel = new JPanel();
145        buttonPanel.setLayout(new BoxLayout(buttonPanel, BoxLayout.X_AXIS));
146 
147        buttonPanel.add(backgroundColorButton);
148        buttonPanel.add(Box.createRigidArea(new Dimension(15, 1)));
149 
150        buttonPanel.add(gradientAButton);
151        buttonPanel.add(Box.createRigidArea(new Dimension(15, 1)));
152 
153        buttonPanel.add(gradientBButton);
154        buttonPanel.add(Box.createRigidArea(new Dimension(15, 1)));
155 
156        buttonPanel.add(outerColorButton);
157 
158        // Add the panel midway down the panel
159        p.add(Box.createRigidArea(new Dimension(1, 10)));
160        p.add(buttonPanel);
161        p.add(Box.createRigidArea(new Dimension(1, 5)));
162        p.add(bezAnim);
163    }
164 
165    class ColorSwatch implements Icon {
166        String gradient;
167        BezierAnimationPanel bez;
168 
169        public ColorSwatch(String g, BezierAnimationPanel b) {
170            bez = b;
171            gradient = g;
172        }
173 
174        public int getIconWidth() {
175            return 11;
176        }
177 
178        public int getIconHeight() {
179            return 11;
180        }
181 
182        public void paintIcon(Component c, Graphics g, int x, int y) {
183            g.setColor(Color.black);
184            g.fillRect(x, y, getIconWidth(), getIconHeight());
185            if(gradient.equals("GradientA")) {
186                g.setColor(bez.getGradientColorA());
187            } else if(gradient.equals("GradientB")) {
188                g.setColor(bez.getGradientColorB());
189            } else if(gradient.equals("Background")) {
190                g.setColor(bez.getBackgroundColor());
191            } else if(gradient.equals("OuterLine")) {
192                g.setColor(bez.getOuterColor());
193            }
194            g.fillRect(x+2, y+2, getIconWidth()-4, getIconHeight()-4);
195        }
196    }
197 
198}

[all classes][default package]
EMMA 2.0.4015 (stable) (C) Vladimir Roubtsov