Jframe using multiple classes?
- by user2945880
and im trying to make it so it can show multiple classes at once
Jframe:
import javax.swing.JFrame;
import java.awt.BorderLayout;
public class Concert
{
public static void main(String[] args)
{
JFrame frame = new JFrame();
frame.setSize(1000, 800);
frame.setTitle("Concert!");
…