This commit is contained in:
Lucio Lelii 2018-10-17 13:22:59 +00:00
parent f70012ebd0
commit 819056832d
2 changed files with 8 additions and 0 deletions

View File

@ -38,6 +38,12 @@ public class Path {
return path;
}
public void appendParent(String parent){
this.paths = new LinkedList<String>(this.paths);
this.paths.add(0, parent);
}
protected Path append(String anotherPath){
return this.append(new Path(anotherPath));
}

View File

@ -30,4 +30,6 @@ public class ImageContent extends Content{
@Attribute("hl:thumbnailData")
byte[] thumbnailData;
String thumbnailMimeType = "image/png";
}