Last change
on this file since 345 was 1, checked in by Wouter Pasman, 6 years ago |
Initial import : Genius 9.0.0
|
File size:
419 bytes
|
Line | |
---|
1 | package genius.gui.panels;
|
---|
2 |
|
---|
3 | import javax.swing.BorderFactory;
|
---|
4 | import javax.swing.BoxLayout;
|
---|
5 | import javax.swing.JPanel;
|
---|
6 |
|
---|
7 | /**
|
---|
8 | * vertical flow panel that has a border and a title.
|
---|
9 | *
|
---|
10 | */
|
---|
11 | @SuppressWarnings("serial")
|
---|
12 | public class VflowPanelWithBorder extends JPanel {
|
---|
13 | public VflowPanelWithBorder(String title) {
|
---|
14 | setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
|
---|
15 | setBorder(BorderFactory.createTitledBorder(title));
|
---|
16 | }
|
---|
17 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.