mirror of
https://gitlab.com/biskuteri-cafe/JKomasto2.git
synced 2024-11-20 06:24:50 +01:00
61 lines
897 B
Java
61 lines
897 B
Java
|
|
import javax.swing.JFrame;
|
|
import javax.swing.JPanel;
|
|
import javax.swing.JComponent;
|
|
import java.awt.Dimension;
|
|
import java.awt.BorderLayout;
|
|
|
|
class
|
|
JKomasto {
|
|
|
|
public static void
|
|
main(String... args) { new JKomasto(); }
|
|
|
|
// ---%-@-%---
|
|
|
|
JKomasto()
|
|
{
|
|
new PostWindow().setVisible(true);
|
|
}
|
|
|
|
// - -%- -
|
|
|
|
private static void
|
|
test(JComponent component, int width, int height)
|
|
{
|
|
JFrame frame = new JFrame();
|
|
frame.setTitle(component.getClass().getName());
|
|
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
|
|
frame.setLocationByPlatform(true);
|
|
|
|
JPanel panel = new JPanel();
|
|
panel.setPreferredSize(new Dimension(width, height));
|
|
panel.add(component);
|
|
frame.setContentPane(panel);
|
|
|
|
frame.setVisible(true);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class
|
|
Timeline {
|
|
|
|
}
|
|
|
|
|
|
|
|
class
|
|
Post {
|
|
|
|
}
|
|
|
|
|
|
|
|
class
|
|
Composition {
|
|
|
|
}
|