Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1241 → Rev 1242

/PhotoAlbum/trunk/src/ak/photoalbum/webapp/IndexEntry.java
7,6 → 7,10
private File file;
private String path;
private String title;
private String subtitle;
private String subtitleMime;
private String comment;
private String commentMime;
private boolean isDir;
private int width;
private int height;
56,6 → 60,46
this.title = title;
}
 
public String getSubtitle()
{
return subtitle;
}
 
public void setSubtitle(String subtitle)
{
this.subtitle = subtitle;
}
 
public String getSubtitleMime()
{
return subtitleMime;
}
 
public void setSubtitleMime(String subtitleMime)
{
this.subtitleMime = subtitleMime;
}
 
public String getComment()
{
return comment;
}
 
public void setComment(String comment)
{
this.comment = comment;
}
 
public String getCommentMime()
{
return commentMime;
}
 
public void setCommentMime(String commentMime)
{
this.commentMime = commentMime;
}
 
public boolean getIsDir()
{
return isDir;
88,7 → 132,7
 
public String toString()
{
return super.toString() + ": " + file + " - " + path + " - " + title
+ " " + width + "x" + height;
return super.toString() + ": " + file + " - " + path + " - " + title + "/" + subtitle
+ " (" + comment + ") " + width + "x" + height;
}
}