diff options
| author | Eddie Ringle | 2011-08-08 01:28:07 +0000 |
|---|---|---|
| committer | Kevin Sawicki | 2011-08-08 01:28:07 +0000 |
| commit | 1feda7aab7d3dd1ce4c1fc8c12cba5cc20645cf2 (patch) | |
| tree | 467058e1b15fe95c1e9fa2aa617c9b1eef873122 | |
| parent | d44aa81f1a4f3ef995882a4001bf40c6fe81981f (diff) | |
| download | egit-github-1feda7aab7d3dd1ce4c1fc8c12cba5cc20645cf2.tar.gz egit-github-1feda7aab7d3dd1ce4c1fc8c12cba5cc20645cf2.tar.xz egit-github-1feda7aab7d3dd1ce4c1fc8c12cba5cc20645cf2.zip | |
Add homepage field to repository model
Change-Id: I4d9e76478ea1b687b32cb209dd80b84aad66b9f4
Signed-off-by: Eddie Ringle <eddie@eringle.net>
Signed-off-by: Kevin Sawicki <kevin@github.com>
| -rw-r--r-- | org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Repository.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Repository.java b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Repository.java index d7d3cdfb..9ea0d984 100644 --- a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Repository.java +++ b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Repository.java @@ -125,6 +125,8 @@ public class Repository implements IRepositoryIdProvider { private String description; + private String homepage; + private String gitUrl; private String htmlUrl; @@ -384,6 +386,22 @@ public class Repository implements IRepositoryIdProvider { } /** + * @return homepage + */ + public String getHomepage() { + return homepage; + } + + /** + * @param homepage + * @return this repository + */ + public Repository setHomepage(String homepage) { + this.homepage = homepage; + return this; + } + + /** * @return gitUrl */ public String getGitUrl() { |
