added last commit message to repositorybrowser

This commit is contained in:
Sebastian Sdorra
2011-06-13 13:14:25 +02:00
parent a9061d8592
commit f8483c22af
3 changed files with 34 additions and 2 deletions

View File

@@ -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;