Сначала необходимо создать объект, определив класс
пример
class XYZ {
//constructor to initialize value
XYZ(X detail, Y information){
this.detail = detail;
this.information = information;
}
X detail;
Y information
}
class X {
//constructor to initialize value
X(String name, String description){
this.name = name
this.information = information
}
String name;
String description;
}
class Y {
//constructor to initialize value
Y(X first, X second){
this.first = first;
this.second = second;
}
X first;
X second;
}
И назначить значение по умолчанию, используя конструкторы