diff --git a/src/de/uni_passau/fim/seibt/gitwrapper/repo/Repository.java b/src/de/uni_passau/fim/seibt/gitwrapper/repo/Repository.java index 111895c46b67fd14318885a4ae0bb170f1e0f0a0..705a02ac6180bde716f4c71523bd23bf91659151 100644 --- a/src/de/uni_passau/fim/seibt/gitwrapper/repo/Repository.java +++ b/src/de/uni_passau/fim/seibt/gitwrapper/repo/Repository.java @@ -2,6 +2,9 @@ package de.uni_passau.fim.seibt.gitwrapper.repo; import java.io.File; +/** + * A git {@link Repository}. + */ public class Repository { private GitWrapper gitWrapper; @@ -9,6 +12,16 @@ public class Repository { private String url; private File dir; + /** + * Constructs a new {@link Repository}. + * + * @param gitWrapper + * the {@link GitWrapper} to use + * @param url + * the url the {@link Repository} was cloned from + * @param dir + * the directory containing the {@link Repository} + */ Repository(GitWrapper gitWrapper, String url, File dir) { this.gitWrapper = gitWrapper; this.url = url;