use of com.darwino.domino.napi.wrap.NSFNote in project org.openntf.nsfodp by OpenNTF.
the class DarwinoNDXLExporter method export.
@Override
public void export(NNote note, OutputStream os) {
try {
NSFNote n = ((DarwinoNNote) note).getNSFNote();
this.exporter.export(n, os);
} catch (DominoException e) {
throw new NDominoException(e.getStatus(), e);
}
}
Aggregations