mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-04-01 18:00:12 +02:00
added last commit message to repositorybrowser
This commit is contained in:
@@ -90,6 +90,17 @@ public class FileObject implements LastModifiedAware, Iterable<FileObject>
|
||||
return children;
|
||||
}
|
||||
|
||||
/**
|
||||
* Method description
|
||||
*
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public String getDescription()
|
||||
{
|
||||
return description;
|
||||
}
|
||||
|
||||
/**
|
||||
* Method description
|
||||
*
|
||||
@@ -159,6 +170,17 @@ public class FileObject implements LastModifiedAware, Iterable<FileObject>
|
||||
this.children = children;
|
||||
}
|
||||
|
||||
/**
|
||||
* Method description
|
||||
*
|
||||
*
|
||||
* @param description
|
||||
*/
|
||||
public void setDescription(String description)
|
||||
{
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
/**
|
||||
* Method description
|
||||
*
|
||||
@@ -221,6 +243,9 @@ public class FileObject implements LastModifiedAware, Iterable<FileObject>
|
||||
@XmlElementWrapper(name = "children")
|
||||
private List<FileObject> children;
|
||||
|
||||
/** Field description */
|
||||
private String description;
|
||||
|
||||
/** Field description */
|
||||
private boolean directory;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user