Person

Class Person in package test is used in all our test programs as actual type parameter for the parameterized factories. Its source can be found in the Factory/Java .zip-archive in factory/src/test/Person.java:

package test;

public class Person {
    public    String name;
    public    int plz;
    protected int id;

    int myMethod(int x, String y) {
        System.out.println(y);
        return ++x;
    }

    void myMethod2(float x) {
    }
}