package javacodebook.gui.state;

/**
 * @author Benjamin Rusch
 * In der Starter Klasse mit der main Methode wird das PropertyFrame 
 * erstellt und sichtbar gemacht.
 */

public class Starter {

	public static void main(String[] args) {
		PropertyFrame propframe =  new PropertyFrame("Fenster mit Zustands"
				+"speicherung über Properties");
		propframe.pack();
		propframe.setVisible(true);
		

	}
}
