package algorithmus; import java.awt.TextField; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.ArrayList; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JSpinner; public class Caesar extends Algorithmus { private String name; private char[] chars; private int v; public Caesar() { name = "Caesar"; chars = new char[] { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'Ä', 'Ö', 'Ü', 'ä', 'ö', 'ü', 'ß', ' '}; v = 13; } public void options() { JFrame frame = new JFrame(); frame.setLayout(null); frame.setTitle("Caesar"); frame.setSize(200, 150); TextField alphabet = new TextField(); String alphaText = ""; for(int i = 0; i