blob: c41c628a31a935c47f7346ecabb98f07747776a3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* */ package GUIComponents;
/* */
/* */ import java.awt.Component;
/* */ import java.awt.FlowLayout;
/* */ import javax.swing.JPanel;
/* */
/* */ public class WrapperPanel extends JPanel
/* */ {
/* */ public WrapperPanel(Component t)
/* */ {
/* 10 */ add(t);
/* */ }
/* */ public WrapperPanel(Component[] cArr) {
/* 13 */ super(new FlowLayout());
/* 14 */ for (Component x : cArr) add(x);
/* */ }
/* */ }
/* Location: Modulus.jar
* Qualified Name: GUIComponents.WrapperPanel
* JD-Core Version: 0.6.2
*/
|