Examples of NoteImpl


Examples of fr.univ.jfc.java.grp7.serveur.NoteImpl

  public static void main(String[] args) throws RemoteException
    try {
      final Connection conn = Connect.getInstance("jdbc:postgresql://localhost:5432/postgres", "postgres", "bonjoure");
      final UserImpl myUser = new UserImpl(3"", "a", "",conn);
      final UserImpl myUser2 = new UserImpl(4, "Julia", "a", "Xavier",conn);
      final NoteImpl myNote = new NoteImpl(1,"note test pe","je suis le chef",3);     
      final NoteImpl myNote2 = new NoteImpl(3,"ou�","ok",3);
     
      //final DroitImpl myDroit = new DroitImpl(1,777);
       myUser.Connection();              //OK
       System.out.println(myUser.getProprioNomPrenom(3));
      // myUser.addNote(myNote);            //OK
View Full Code Here

Examples of fr.univ.jfc.java.grp7.serveur.NoteImpl

  public static void main(String[] args) throws RemoteException, ClassNotFoundException
    try {
      final Connection conn = Connect.getInstance("jdbc:postgresql://localhost:5432/postgres", "postgres", "bonjoure");
      final UserImpl myUser = new UserImpl(3"", "a", "",conn);
      final UserImpl myUser2 = new UserImpl(4, "Julia", "a", "Xavier",conn);
      final NoteImpl myNote = new NoteImpl(1,"note test pe","je suis le chef",3);     
      final NoteImpl myNote2 = new NoteImpl(3,"ou�","ok",3);
     
      //final DroitImpl myDroit = new DroitImpl(1,777);
       myUser.Connection();              //OK
       System.out.println(myUser.getProprioNomPrenom(3));
      // myUser.addNote(myNote);            //OK
View Full Code Here

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
Copyright © 2018 www.massapi.com. 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.