de.be4.classicalb.core.parser.FastReadWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bparser Show documentation
Show all versions of bparser Show documentation
Part of the ProB Parser library
The newest version!
package de.be4.classicalb.core.parser;
import java.io.IOException;
import java.io.OutputStream;
import de.prob.prolog.term.PrologTerm;
/**
* @deprecated please use {@link de.prob.prolog.output.FastReadWriter}
*/
@Deprecated
public final class FastReadWriter {
private final de.prob.prolog.output.FastReadWriter delegate;
public FastReadWriter(OutputStream out) {
this.delegate = new de.prob.prolog.output.FastReadWriter(out);
}
public void fastwrite(PrologTerm term) throws IOException {
this.delegate.fastwrite(term);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy