samples/customer.java.target
author Hartmut Goebel <h.goebel@crazy-compilers.com>
Thu, 19 Mar 2020 10:47:36 +0100
changeset 63 37d51c3abaae
parent 0 76005e62091d
permissions -rw-r--r--
Release 2.6.3
package Bla;

class Customer {
    // attribute id

    public int getId() {
        return id;
    }

    public void setId(int value) {
        id = value;
    }

    private int id;

    // attribute name

    public String getName() {
        return name;
    }

    public void setName(String value) {
        name = value;
    }

    private String name;
}