Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1249 → Rev 1267

/PhotoAlbum/trunk/src/ak/photoalbum/logic/IndexEntry.java
14,6 → 14,7
private boolean isDir;
private int width;
private int height;
private int page;
 
public IndexEntry()
{
130,9 → 131,19
this.height = height;
}
 
public int getPage()
{
return page;
}
 
public void setPage(int page)
{
this.page = page;
}
 
public String toString()
{
return super.toString() + ": " + file + " - " + path + " - " + title + "/" + subtitle
+ " (" + comment + ") " + width + "x" + height;
+ " (" + comment + ") " + width + "x" + height + ", page " + page;
}
}