Subtrees hinzugefügt

This commit is contained in:
Thomas Schaller 2024-12-29 14:26:34 +01:00
parent e913ca6350
commit 7cf55ce953
53 changed files with 3807 additions and 0 deletions

View file

@ -0,0 +1,35 @@
/**
*
* Beschreibung
*
* @version 1.0 vom 25.01.2016
* @author
*/
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.util.*;
import java.awt.image.BufferedImage;
public class JMyLabel extends JLabel {
// Anfang Attribute
private Nachricht nachricht;
// Ende Attribute
public JMyLabel(Nachricht nachricht, String s) {
super();
this.setText(s);
this.nachricht = nachricht;
}
// Anfang Methoden
public Nachricht getNachricht() {
return nachricht;
}
} // end of JMyLabel