View Javadoc

1   package net.sf.jour.processor;
2   
3   import java.io.IOException;
4   
5   public interface OutputWriter {
6   
7   	public boolean needUpdate(Entry entry);
8   	
9   	public void write(Entry entry) throws IOException;
10  
11  	public void close();
12  }