Skip to content

Instantly share code, notes, and snippets.

@Eugeny
Created April 4, 2011 10:42
Show Gist options
  • Save Eugeny/901460 to your computer and use it in GitHub Desktop.
Save Eugeny/901460 to your computer and use it in GitHub Desktop.
Message msg = new Message();
msg.setAuthor(author);
msg.setText(text);
msg.setIsDeleted(false);
GregorianCalendar cal = new GregorianCalendar();
cal.setTimeInMillis(System.currentTimeMillis());
msg.setSentTime(cal.getTime());
messageDao.create(msg);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment