comparison servlet/src/digilib/io/ImageFileSet.java @ 588:aee436f0549d stream

more work on stream input
author robcast
date Thu, 06 Jan 2011 14:37:50 +0100
parents 95417c4615b8
children 69bc69381ac4
comparison
equal deleted inserted replaced
587:720d061a1b30 588:aee436f0549d
116 * 116 *
117 * @param f 117 * @param f
118 * file to add 118 * file to add
119 * @return true (always) 119 * @return true (always)
120 */ 120 */
121 public boolean add(ImageFile f) { 121 public boolean add(ImageInput f) {
122 f.setParent(this); 122 f.setParent(this);
123 return list.add(f); 123 return list.add(f);
124 } 124 }
125 125
126 /** 126 /**