MCPcopy Create free account
hub / github.com/annmuor/jnode / saveOrUpdate

Method saveOrUpdate

jnode-core/src/jnode/dao/GenericDAO.java:342–349  ·  view source on GitHub ↗
(T object)

Source from the content-addressed store, hash-verified

340 }
341
342 public void saveOrUpdate(T object) {
343 try {
344 getDao().createOrUpdate(object);
345 } catch (SQLException e) {
346 logger.l1("SQL Exception in saveOrUpdate", e);
347 logger.l1(MessageFormat.format("we worked with {0}", object));
348 }
349 }
350
351 public void delete(T object) {
352 try {

Callers 6

actionPerformedMethod · 0.80
setOptionMethod · 0.80
handleMethod · 0.80
handleMethod · 0.80
handleMethod · 0.80
handleMethod · 0.80

Calls 3

getDaoMethod · 0.95
l1Method · 0.80
formatMethod · 0.80

Tested by

no test coverage detected