Move data files into the Python package.
The packe directory is now always searched for include files, after
all other directoreis given in $YML_PATH.
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;
}