Go to the documentation of this file. 21 package org.matsim.matrices;
23 import java.io.BufferedWriter;
24 import java.io.IOException;
26 interface MatricesWriterHandler {
32 public void startMatrices(
final Matrices matrices,
final BufferedWriter out)
throws IOException;
34 public void endMatrices(
final BufferedWriter out)
throws IOException;
40 public void startMatrix(
final Matrix matrix,
final BufferedWriter out)
throws IOException;
42 public void endMatrix(
final BufferedWriter out)
throws IOException;
48 public void startEntry(
final Entry entry,
final BufferedWriter out)
throws IOException;
50 public void endEntry(
final BufferedWriter out)
throws IOException;
52 public void writeSeparator(
final BufferedWriter out)
throws IOException;