home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML in Action / Dynamicke-HTML-v-akci-covermount.bin / XML / PARSER / XMLINST.EXE / classes / com / ms / xml / xmlstream / IXMLStream.java < prev    next >
Encoding:
Java Source  |  1997-10-22  |  1.6 KB  |  40 lines

  1. //
  2. // Auto-generated using JActiveX.EXE 4.79.2228
  3. //   (jactivex /javatlb /d . /p com.ms.xml /r xmlurlstream.tlb)
  4. //
  5. // WARNING: Do not remove the comments that include "@com" directives.
  6. // This source file must be compiled by a @com-aware compiler.
  7. // If you are using the Microsoft Visual J++ compiler, you must use
  8. // version 1.02.3920 or later. Previous versions will not issue an error
  9. // but will not generate COM-enabled class files.
  10. //
  11.  
  12. package com.ms.xml.xmlstream;
  13.  
  14. import com.ms.com.*;
  15. import com.ms.com.IUnknown;
  16. import com.ms.com.Variant;
  17.  
  18. // Dual interface IXMLStream
  19. /** @com.interface(iid=C8AB904D-4132-11D1-A2CC-00C04FD73533, thread=AUTO, type=DUAL) */
  20. public interface IXMLStream extends IUnknown
  21. {
  22.   /** @com.method(vtoffset=4, dispid=1, type=METHOD, name="Open")
  23.       @com.parameters([in,type=STRING] url, [type=I4] return) */
  24.   public int Open(String url);
  25.  
  26.   /** @com.method(vtoffset=5, dispid=2, type=METHOD, name="Read")
  27.       @com.parameters([out,size=1,elementType=I4,type=ARRAY] buf, [in,type=I4] len, [type=I4] return) */
  28.   public int Read(int[] buf, int len);
  29.  
  30.   /** @com.method(vtoffset=6, dispid=3, type=METHOD, name="SetEncoding")
  31.       @com.parameters([in,type=I4] encoding, [in,type=I4] offset) */
  32.   public void SetEncoding(int encoding, int offset);
  33.  
  34.   /** @com.method(vtoffset=7, dispid=0, type=METHOD, name="Close")
  35.       @com.parameters() */
  36.   public void Close();
  37.  
  38.   public static final com.ms.com._Guid iid = new com.ms.com._Guid((int)0xc8ab904d, (short)0x4132, (short)0x11d1, (byte)0xa2, (byte)0xcc, (byte)0x0, (byte)0xc0, (byte)0x4f, (byte)0xd7, (byte)0x35, (byte)0x33);
  39. }
  40.