concept G22GalleryImage { File path; toString { ret /*"[" + id + "] " +*/ fileName(path); } bool imageExists() { ret fileExists(path); } BufferedImage load() { ret loadImage2(path); } File imageFile() { ret path; } }