home *** CD-ROM | disk | FTP | other *** search
- package sun.awt.windows;
-
- import java.io.FileInputStream;
- import java.io.FileNotFoundException;
- import java.io.IOException;
-
- class WDropTargetContextPeerFileStream extends FileInputStream {
- private String nativeType;
- private int stgmedium;
-
- WDropTargetContextPeerFileStream(String var1, String var2, int var3) throws FileNotFoundException {
- super(var1);
- this.nativeType = var2;
- this.stgmedium = var3;
- }
-
- public void close() throws IOException {
- super.close();
- this.freeStgMedium(this.stgmedium);
- }
-
- private native void freeStgMedium(int var1);
- }
-