~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to xml/xamui/src/org/netbeans/modules/xml/xam/ui/customizer/MessagePanel.java

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
3
 *
 
4
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 
5
 *
 
6
 * The contents of this file are subject to the terms of either the GNU
 
7
 * General Public License Version 2 only ("GPL") or the Common
 
8
 * Development and Distribution License("CDDL") (collectively, the
 
9
 * "License"). You may not use this file except in compliance with the
 
10
 * License. You can obtain a copy of the License at
 
11
 * http://www.netbeans.org/cddl-gplv2.html
 
12
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
 
13
 * specific language governing permissions and limitations under the
 
14
 * License.  When distributing the software, include this License Header
 
15
 * Notice in each file and include the License file at
 
16
 * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
 
17
 * particular file as subject to the "Classpath" exception as provided
 
18
 * by Sun in the GPL Version 2 section of the License file that
 
19
 * accompanied this code. If applicable, add the following below the
 
20
 * License Header, with the fields enclosed by brackets [] replaced by
 
21
 * your own identifying information:
 
22
 * "Portions Copyrighted [year] [name of copyright owner]"
 
23
 *
 
24
 * Contributor(s):
 
25
 *
 
26
 * The Original Software is NetBeans. The Initial Developer of the Original
 
27
 * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
 
28
 * Microsystems, Inc. All Rights Reserved.
 
29
 *
 
30
 * If you wish your version of this file to be governed by only the CDDL
 
31
 * or only the GPL Version 2, indicate your decision by adding
 
32
 * "[Contributor] elects to include this software in this distribution
 
33
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
 
34
 * single choice of license, a recipient has the option to distribute
 
35
 * your version of this file under either the CDDL, the GPL Version 2 or
 
36
 * to extend the choice of license to its licensees as provided above.
 
37
 * However, if you add GPL Version 2 code and therefore, elected the GPL
 
38
 * Version 2 license, then the option applies only if the new code is
 
39
 * made subject to such option by the copyright holder.
 
40
 */
 
41
 
 
42
package org.netbeans.modules.xml.xam.ui.customizer;
 
43
 
 
44
import java.awt.Color;
 
45
import java.util.Collection;
 
46
import javax.swing.ImageIcon;
 
47
import javax.swing.JComponent;
 
48
import javax.swing.JLabel;
 
49
import org.jdesktop.layout.GroupLayout;
 
50
import org.openide.util.Utilities;
 
51
 
 
52
/**
 
53
 *
 
54
 * @author  Ajit Bhate
 
55
 */
 
56
public class MessagePanel extends javax.swing.JPanel implements MessageDisplayer
 
57
{
 
58
        static final long serialVersionUID = 1L;
 
59
        
 
60
        /** Creates new form MessagePanel */
 
61
        public MessagePanel()
 
62
        {
 
63
                initComponents();
 
64
        }
 
65
        
 
66
        /** This method is called from within the constructor to
 
67
         * initialize the form.
 
68
         * WARNING: Do NOT modify this code. The content of this method is
 
69
         * always regenerated by the Form Editor.
 
70
         */
 
71
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
 
72
    private void initComponents()
 
73
    {
 
74
        panel = new javax.swing.JPanel();
 
75
 
 
76
        setLayout(new java.awt.BorderLayout());
 
77
 
 
78
        panel.setLayout(null);
 
79
 
 
80
        GroupLayout panelLayout = new GroupLayout(panel);
 
81
        panel.setLayout(panelLayout);
 
82
        panelLayout.setAutocreateGaps(true);
 
83
        panelLayout.setAutocreateContainerGaps(true);
 
84
        GroupLayout.ParallelGroup hGroup =
 
85
        panelLayout.createParallelGroup();
 
86
        panelLayout.setHorizontalGroup(hGroup);
 
87
        GroupLayout.SequentialGroup vGroup =
 
88
        panelLayout.createSequentialGroup();
 
89
        panelLayout.setVerticalGroup(vGroup);
 
90
        add(panel, java.awt.BorderLayout.CENTER);
 
91
 
 
92
    }// </editor-fold>//GEN-END:initComponents
 
93
 
 
94
        public void annotate(String message, MessageDisplayer.Type type)
 
95
        {
 
96
                if(!isVisible()) setVisible(true);
 
97
                JLabel messageLabel = new JLabel(message);
 
98
                switch(type)
 
99
                {
 
100
                        case ERROR:
 
101
                                messageLabel.setForeground(Color.RED);
 
102
                                messageLabel.setIcon(new ImageIcon(Utilities.loadImage(
 
103
                                                "org/netbeans/modules/xml/xam/ui/resources/error.gif"))); // NOI18N
 
104
                                break;
 
105
                        case WARNING:
 
106
                                messageLabel.setIcon(new ImageIcon(Utilities.loadImage(
 
107
                                                "org/netbeans/modules/xml/xam/ui/resources/warning.gif"))); // NOI18N
 
108
                                break;
 
109
                        case INFO:
 
110
                        default:
 
111
                }
 
112
                GroupLayout layout = (GroupLayout)panel.getLayout();
 
113
                ((GroupLayout.ParallelGroup)layout.getHorizontalGroup()).add(messageLabel);
 
114
                ((GroupLayout.SequentialGroup)layout.getVerticalGroup()).add(messageLabel);
 
115
        }
 
116
 
 
117
        public void clear()
 
118
        {
 
119
                remove(panel);
 
120
                initComponents();
 
121
                setVisible(false);
 
122
        }
 
123
 
 
124
        public JComponent getComponent()
 
125
        {
 
126
                return this;
 
127
        }
 
128
        
 
129
        
 
130
    // Variables declaration - do not modify//GEN-BEGIN:variables
 
131
    private javax.swing.JPanel panel;
 
132
    // End of variables declaration//GEN-END:variables
 
133
        
 
134
}