mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
リポジトリのGetter/Setterを追加
This commit is contained in:
parent
12537b3506
commit
f0ab914ca5
|
@ -76,6 +76,13 @@ public class DocumentDetail {
|
|||
return defaultBranch;
|
||||
}
|
||||
|
||||
/**
|
||||
* ドキュメントのリポジトリを取得する
|
||||
*/
|
||||
public Repository getRepository() {
|
||||
return repository;
|
||||
}
|
||||
|
||||
|
||||
// Setter
|
||||
|
||||
|
@ -111,5 +118,11 @@ public class DocumentDetail {
|
|||
this.defaultBranch = defaultBranch;
|
||||
}
|
||||
|
||||
/**
|
||||
* ドキュメントのリポジトリを設定する
|
||||
*/
|
||||
public void setRepository(Repository repository) {
|
||||
this.repository = repository;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user