/* * Copyright 2007, MetaDimensional Technologies Inc. * * * This file is part of the RememberTheMilk Java API. * * The RememberTheMilk Java API is free software; you can redistribute it * and/or modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * The RememberTheMilk Java API is distributed in the hope that it will be * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser * General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ package com.mdt.rtm.data; import java.util.ArrayList; import java.util.Collections; import java.util.List; import org.w3c.dom.Element; /** * * @author Will Ross Jun 22, 2007 */ public class RtmTaskList extends RtmData { private final String id; private final List series; public RtmTaskList(String id) { this.id = id; this.series = new ArrayList(); } public RtmTaskList(Element elt) { id = elt.getAttribute("id"); series = new ArrayList(); for (Element seriesElt : children(elt, "taskseries")) { series.add(new RtmTaskSeries(seriesElt)); } if (id == null || id.length() == 0) { throw new RuntimeException("No id found in task list."); } } public String getId() { return id; } public List getSeries() { return Collections.unmodifiableList(series); } }