blob: 63d792a0680bd3626e4f4d43aae2a89854e4d87a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package cppcheckplus.control;
import java.awt.BorderLayout;
import javax.swing.JPanel;
public class MyContentPanel extends JPanel
{
public MyContentPanel()
{
super();
setLayout(new BorderLayout());
setBackground(MyContorlUtil.CONTENT_PANE_BACKGROUND);
}
}
|