Package cl.continuum.harvest

Examples of cl.continuum.harvest.Request


    if (Main.task == null)
      listTasks();
    Scanner scan = new Scanner(System.in);
    System.out.print("Notes: ");
    String notes = scan.nextLine();
    Request request = new Request();
    request.setNotes(notes);
    request.setProject_id((int) Main.project.getId());
    request.setTask_id((int) Main.task.getId());
    Main.dayEntry =  request.add();
    writeObject(Main.dayEntry);
  }
View Full Code Here

TOP

Related Classes of cl.continuum.harvest.Request

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.