package test;



public class Eins
{
    int a;
    char b = 'a';
    boolean c = false;
    String s = "Hallo";

    public static void Methode()
    {
	int g = 34;
	char h = 'c';
	String bla = "Haus";
	boolean bo = true;
    }

    private int Methode2()
    {
	Zwei testklasse = new Zwei();
	int d;
	int f = d = 5;
	return 14;
    }
}