/******************************************************************************* * Copyright (c) 2011 GitHub Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Kevin Sawicki (GitHub Inc.) - initial API and implementation *******************************************************************************/ package org.eclipse.egit.github.core; import java.io.Serializable; import java.util.ArrayList; import java.util.Date; import java.util.List; import org.eclipse.egit.github.core.util.DateUtils; /** * GitHub issue model class. */ public class Issue implements Serializable { /** serialVersionUID */ private static final long serialVersionUID = 6358575015023539051L; private long id; private Date closedAt; private Date createdAt; private Date updatedAt; private int comments; private int number; private List