
scm.scmOutputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jasmin Show documentation
Show all versions of jasmin Show documentation
Java Assembler Interface for the Soot framework
// simple wrapper around
// a combination of File/Dataoutputstream
package scm;
import java.io.*;
class scmOutputStream extends DataOutputStream
{
scmOutputStream(String path)
throws IOException
{ super(new BufferedOutputStream(new FileOutputStream(path))); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy