243244245246247248249250251252
* Create note * @param noteContent * @return note */ private static Note createNote(String noteContent){ Note note = new NoteImpl(); note.setEncodingType(EncodingType.QUOTED_PRINTABLE); note.setNote(noteContent); return note; }