Code formating and whitespace cleanup
[jpim.git] / src / de / j32 / pimstuff / conduit / Conduit.java
1 package de.j32.pimstuff.conduit;
2
3 public interface Conduit
4 {
5     public Exporter exporter() throws ConduitException;
6
7     public Importer importer() throws ConduitException;
8 }