Posts by Michel Adriano Medeiros • 69 points
5 posts
-
1
votes2
answers198
viewsA: JAVA - Swing-free timer with MVC
import javax.swing.*; public class GUI extends javax.swing.JFrame{ private Pomodoro pomodoro; boolean cronometroIniciar = true; Thread t = null; public GUI() { …
-
0
votes2
answers198
viewsA: JAVA - Swing-free timer with MVC
private void btIniciarActionPerformed(java.awt.event.ActionEvent evt) { pomodoro = new Pomodoro(); pomodoro.iniciar(); Thread t = new Thread(() ->{ while(true){ //status true quando aperta o…
-
0
votes1
answer51
viewsA: Java Swing GUI - Messy interface - Field not showing
import java.awt.Container; import javax.swing.JButton; import javax.swing.JFormattedTextField; import javax.swing.JFrame; import javax.swing.JLabel; public class JavaInterfaceGrafica extends JFrame…
javaanswered Michel Adriano Medeiros 69 -
-1
votes1
answer32
viewsA: java.lang.reflect.Invocationtargetexception in Javafx
Probably missing add Javafx modules. https://openjfx.io/openjfx-docs/#install-javafx
-
3
votes2
answers551
viewsA: I’m in trouble when I invoke a method - JAVA
The problem is in class menu. Every time you walk into while it shows customers dao.mostrarClientes();
javaanswered Michel Adriano Medeiros 69