what can i do for call a private constructor from another file to open a window?
the class juego inside los señore package Los_señore; import java.awt.BorderLayout; import java.awt.Canvas; import java.awt.Dimension; import javax.swing.JFrame; public class Juego extends Canvas{ private static final long serialVersionUID = 1L; private static final int ANCHO = 1000; private static final int ALTO = 800; private static final String NOMBRE = "Juego"; private static JFrame ventana; public Juego(){ setPreferredSize(new Dimension(ANCHO, ALTO)); ventana = new JFrame(NOMBRE); ventana.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); ventana.setResizable(false); ventana.setLayout(new BorderLayout()); ventana.add(this, BorderLayout.CENTER); ventana.pack(); ventana.setLocationRelativeTo(null); ventana.setVisible(true); } } the other class that iclude main import Los_señore.Juego; class prueba{ public static void main(String[] args){ Juego pepe = new Juego(); pepe.Juego(); } }