Exemplo n.º 1
0
 /** Repositions this stream to the first position in the stream. */
 @Override
 public void reset() {
   index = 0;
   for (TemplateInputStream is : inputStreams) is.reset();
 }
Exemplo n.º 2
0
 /** Closes this input stream and releases any memory resources associated with the stream. */
 @Override
 public void close() {
   index = 0;
   for (TemplateInputStream is : inputStreams) is.close();
 }