added permissions to repository

This commit is contained in:
Sebastian Sdorra
2010-09-09 10:11:58 +02:00
parent e553f3fc34
commit db6ddfb59e
5 changed files with 249 additions and 10 deletions

View File

@@ -40,6 +40,17 @@ public class HgConfig
return configDirectory;
}
/**
* Method description
*
*
* @return
*/
public String getHgBinary()
{
return hgBinary;
}
/**
* Method description
*
@@ -64,6 +75,17 @@ public class HgConfig
this.configDirectory = configDirectory;
}
/**
* Method description
*
*
* @param hgBinary
*/
public void setHgBinary(String hgBinary)
{
this.hgBinary = hgBinary;
}
/**
* Method description
*
@@ -80,6 +102,9 @@ public class HgConfig
/** Field description */
private File configDirectory;
/** Field description */
private String hgBinary = "hg";
/** Field description */
private File repositoryDirectory;
}