Пример #1
0
  public Travel(int id, String title, String description, DateTime start, DateTime end) {
    this.id = id;
    this.start = start;
    this.end = end;
    this.title = title;
    this.description = description;
    days = new ArrayList<Integer>();

    start.setBeginning();
    end.setBeginning();
  }