update copyright
[fedora-idea.git] / xml / dom-openapi / src / com / intellij / util / xml / ui / EmptyPane.java
blob657ac638d94784daa94851da171a824d0ebb5fe4
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package com.intellij.util.xml.ui;
19 import com.intellij.util.ui.UIUtil;
21 import javax.swing.*;
22 import java.awt.*;
24 /**
25 * @author cdr
28 public class EmptyPane {
29 private JPanel myPanel;
30 private JLabel myLabel;
32 public EmptyPane(String text) {
33 final Color color = UIUtil.getSeparatorShadow();
34 myLabel.setForeground(color);
35 myLabel.setText(text);
36 myPanel.setBackground(new JTree().getBackground());
39 public JComponent getComponent() {
40 return myPanel;
43 public void setText(String text) {
44 myLabel.setText(text);
47 public static void addToPanel(JPanel panel, String text) {
48 final EmptyPane emptyPane = new EmptyPane(text);
49 panel.setLayout(new BorderLayout());
50 panel.add(emptyPane.getComponent(), BorderLayout.CENTER);