Package com.sun.codemodel.fmt
Class JBinaryFile
- java.lang.Object
-
- com.sun.codemodel.JResourceFile
-
- com.sun.codemodel.fmt.JBinaryFile
-
public final class JBinaryFile extends JResourceFile
Allows the application to use OutputStream to define data that will be stored into a file.- Author:
- Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
-
-
Constructor Summary
Constructors Constructor Description JBinaryFile(java.lang.String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
build(java.io.OutputStream os)
called by JPackage to produce the file image.java.io.OutputStream
getDataStore()
-
Methods inherited from class com.sun.codemodel.JResourceFile
isResource, name
-
-
-
-
Method Detail
-
getDataStore
public java.io.OutputStream getDataStore()
- Returns:
- Data written to the returned output stream will be written to the file.
-
build
public void build(java.io.OutputStream os) throws java.io.IOException
Description copied from class:JResourceFile
called by JPackage to produce the file image.- Specified by:
build
in classJResourceFile
- Throws:
java.io.IOException
-
-