Package org.eclipse.jgit.gitrepo
Class RepoProject.ReferenceFile
- java.lang.Object
-
- org.eclipse.jgit.gitrepo.RepoProject.ReferenceFile
-
- Direct Known Subclasses:
RepoProject.CopyFile
,RepoProject.LinkFile
- Enclosing class:
- RepoProject
public static class RepoProject.ReferenceFile extends java.lang.Object
The representation of a reference file configuration.- Since:
- 4.8
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.lang.String
dest
(package private) java.lang.String
path
(package private) Repository
repo
(package private) java.lang.String
src
-
Constructor Summary
Constructors Constructor Description ReferenceFile(Repository repo, java.lang.String path, java.lang.String src, java.lang.String dest)
-
-
-
Field Detail
-
repo
final Repository repo
-
path
final java.lang.String path
-
src
final java.lang.String src
-
dest
final java.lang.String dest
-
-
Constructor Detail
-
ReferenceFile
public ReferenceFile(Repository repo, java.lang.String path, java.lang.String src, java.lang.String dest)
- Parameters:
repo
- the super project.path
- the path of the project containing this copyfile config.src
- the source path relative to the sub repo.dest
- the destination path relative to the super project.
-
-