コード例 #1
0
 /**
  * Saves a PropertiesCategoryVO whether it is new or not.
  *
  * @param c The PropertiesCategoryVO to save
  * @return The saved PropertiesCategoryVO
  * @throws SystemException If an error happens
  */
 public PropertiesCategoryVO save(PropertiesCategoryVO c) throws SystemException {
   return c.isUnsaved()
       ? create(c)
       : (PropertiesCategoryVO) updateEntity(PropertiesCategoryImpl.class, c);
 }