Go to the documentation of this file. 21 package org.matsim.counts;
22 import java.io.BufferedWriter;
23 import java.io.IOException;
25 interface CountsWriterHandler {
29 public void startCounts(
final Counts counts,
final BufferedWriter out)
throws IOException;
30 public void endCounts(
final BufferedWriter out)
throws IOException;
34 public void startCount(
final Count count,
final BufferedWriter out)
throws IOException;
35 public void endCount(
final BufferedWriter out)
throws IOException;
39 public void startVolume(
final Volume volume,
final BufferedWriter out)
throws IOException;
40 public void endVolume(
final BufferedWriter out)
throws IOException;
42 public void writeSeparator(
final BufferedWriter out)
throws IOException;