Package info.ineighborhood.cardme.impl

Examples of info.ineighborhood.cardme.impl.NoteImpl


   * 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;
  }
View Full Code Here

TOP

Related Classes of info.ineighborhood.cardme.impl.NoteImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.