public void execute() // ------------- // ------------- { // --------- Person p = person.val(); if (p == null) { throw new CommandPreconditionsException("Please, select person first."); } BankAccount ba = new BankAccount(); ba.number.set(Text.fromString("xxx-xxx-xxx")); ba.amount.set(Currency.fromBigDecimal(BigDecimal.valueOf(0.))); ba.bankName.set(Text.fromString("New Bank")); p.accounts.add(ba); // --------- }