Пример #1
0
 public MailManager getMManager() {
   if (mails == null)
     try {
       mails = MailManager.getManager(UID, boxCount);
     } catch (SQLException e) {
       // Ignore for now
       e.printStackTrace();
     }
   return mails;
 }
Пример #2
0
 /**
  * Save an user's data and remove it from the cache
  *
  * @throws SQLException
  */
 public void save() throws SQLException {
   if (mails != null) mails.save();
 }