In this section you will use content assist to finish writing a new method.
setClose() at the end of the props .
The method is provided in the previous section: Adding New Methods.
setClose: function() method body.
When you type the . after this, Eclipse will show a list of possible completions.
Notice how the options are narrowed down as you continue to type.
//> public void setClose()
setClose: function() {
if (!this.getBalance()) {
vjo.sysout.println("Your account has been CLOSED!");
this.setOpen(false);
}
}

sys, press Ctrl+Space to activate content assist. The content assist window with a list of
proposals will appear.

sys (with no space in between).
The list is narrowed and only shows entries starting with 'syso'.

sysout and press Enter. The code sysout is inserted.println and complete the line so that it reads as follows:
vjo.sysout.println("Your account has been CLOSED!");
