Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Milestone.java')
-rw-r--r--org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Milestone.java122
1 files changed, 122 insertions, 0 deletions
diff --git a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Milestone.java b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Milestone.java
new file mode 100644
index 00000000..da243dbd
--- /dev/null
+++ b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Milestone.java
@@ -0,0 +1,122 @@
+/*******************************************************************************
+ * 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.util.Date;
+
+/**
+ * GitHub issue milestone class.
+ *
+ * @author Kevin Sawicki (kevin@github.com)
+ */
+public class Milestone {
+
+ private Date createdAt;
+
+ private Date dueOn;
+
+ private int closedIssues;
+
+ private int number;
+
+ private int openIssues;
+
+ private String description;
+
+ private String state;
+
+ private String title;
+
+ private String url;
+
+ private User creator;
+
+ /**
+ * @return createdAt
+ */
+ public Date getCreatedAt() {
+ return this.createdAt != null ? new Date(this.createdAt.getTime())
+ : null;
+ }
+
+ /**
+ * @return dueOn
+ */
+ public Date getDueOn() {
+ return this.dueOn != null ? new Date(this.dueOn.getTime()) : null;
+ }
+
+ /**
+ * @return closedIssues
+ */
+ public int getClosedIssues() {
+ return this.closedIssues;
+ }
+
+ /**
+ * @return number
+ */
+ public int getNumber() {
+ return this.number;
+ }
+
+ /**
+ * @param number
+ * @return this milestone
+ */
+ public Milestone setNumber(int number) {
+ this.number = number;
+ return this;
+ }
+
+ /**
+ * @return openIssues
+ */
+ public int getOpenIssues() {
+ return this.openIssues;
+ }
+
+ /**
+ * @return description
+ */
+ public String getDescription() {
+ return this.description;
+ }
+
+ /**
+ * @return state
+ */
+ public String getState() {
+ return this.state;
+ }
+
+ /**
+ * @return title
+ */
+ public String getTitle() {
+ return this.title;
+ }
+
+ /**
+ * @return url
+ */
+ public String getUrl() {
+ return this.url;
+ }
+
+ /**
+ * @return creator
+ */
+ public User getCreator() {
+ return this.creator;
+ }
+
+}

Back to the top