
|
If you were logged in you would be able to see more operations.
|
|
|
|
Original Estimate:
|
Unknown
|
Remaining Estimate:
|
Unknown
|
Time Spent:
|
Unknown
|
|
getJdbcTemplate().update(MOTORIST_INSERT, new Object[]{motorist.getEmail(), motorist.getPassword(),
motorist.getFirstName(), motorist.getLastName()})
If the cursor is placed somewhere in "motorist.getEmail(), motorist.getPassword(),", after pressing Ctrl + Shift + Enter, the code will look like this
getJdbcTemplate().update(MOTORIST_INSERT, new Object[]{motorist.getEmail(), motorist.getPassword(),});
motorist.getFirstName(), motorist.getLastName()
})
But if the cursor is placed in the second line and before "motorist.getFirstName(), motorist.getLastName()})", after pressing Ctrl + Shift + Enter, the code will look like this
getJdbcTemplate().update(MOTORIST_INSERT, new Object[]{motorist.getEmail(), motorist.getPassword(),
motorist.getFirstName(), motorist.getLastName()})
|
|
Description
|
getJdbcTemplate().update(MOTORIST_INSERT, new Object[]{motorist.getEmail(), motorist.getPassword(),
motorist.getFirstName(), motorist.getLastName()})
If the cursor is placed somewhere in "motorist.getEmail(), motorist.getPassword(),", after pressing Ctrl + Shift + Enter, the code will look like this
getJdbcTemplate().update(MOTORIST_INSERT, new Object[]{motorist.getEmail(), motorist.getPassword(),});
motorist.getFirstName(), motorist.getLastName()
})
But if the cursor is placed in the second line and before "motorist.getFirstName(), motorist.getLastName()})", after pressing Ctrl + Shift + Enter, the code will look like this
getJdbcTemplate().update(MOTORIST_INSERT, new Object[]{motorist.getEmail(), motorist.getPassword(),
motorist.getFirstName(), motorist.getLastName()})
|
Show » |
|
BeanFactory factory = new XmlBeanFactory( [Ctrl + Shift + Enter here] )-->
CustomInitializationMethodNumberClass numberClass = [Ctrl + Shift + Space here] (CustomInitializationMethodNumberClass) factory.getBean("numberClass")-->
CustomInitializationMethodNumberClass numberClass = // blank line (CustomInitializationMethodNumberClass) factory.getBean("numberClass")