Added serialVerionUID constants.

This commit is contained in:
Deryck Brown 2022-05-12 18:06:56 +01:00
parent 5fa828c450
commit 1bc91a2394
3 changed files with 14 additions and 3 deletions

View File

@ -16,6 +16,8 @@ package Triangle.SyntacticAnalyzer;
class SyntaxError extends Exception {
private static final long serialVersionUID = -5280306336102766860L;
SyntaxError() {
super();
}

View File

@ -25,6 +25,11 @@ import javax.swing.JPanel;
import javax.swing.JScrollPane;
class DrawerFrame extends JFrame {
/**
*
*/
private static final long serialVersionUID = -3650404598416929282L;
public DrawerFrame(JPanel panel) {
setSize(300, 200);
Toolkit tk = Toolkit.getDefaultToolkit();

View File

@ -20,6 +20,10 @@ import java.awt.Graphics;
import javax.swing.JPanel;
class DrawerPanel extends JPanel {
/**
*
*/
private static final long serialVersionUID = 565914745506889669L;
private Drawer drawer;
public DrawerPanel(Drawer drawer) {