Skip to content
Snippets Groups Projects
Commit 8dcab9bb authored by Georg Seibt's avatar Georg Seibt :nerd:
Browse files

doc

parent 51c6aa86
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment