home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 14 / IOPROG_14.ISO / soft / sdkjava / sdkjava.exe / SDKJava.cab / Samples / CustDoc / prundir / IPlotter.java < prev    next >
Encoding:
Java Source  |  1998-03-05  |  1.1 KB  |  27 lines

  1. //
  2. // Auto-generated using JCOM.EXE 4.79.2035
  3. //   (..\..\..\..\javatest\custdoc\tools\jcom.exe /jc Plotter -n..\Plotter)
  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. import com.ms.com.*;
  13. import com.ms.com.IUnknown;
  14. import com.ms.com.Variant;
  15.  
  16. // VTable-only interface IPlotter
  17. /** @com.interface(iid=EFFA21E1-6928-11D0-BFFC-00AA003CFDFC, thread=NO) */
  18. public interface IPlotter extends IUnknown
  19. {
  20.   /** @com.method(vtoffset=0)
  21.       @com.parameters([in,customMarshal="PointMarshaler",type=CUSTOM] start, [in,customMarshal="PointMarshaler",type=CUSTOM] end) */
  22.   public void DrawLine(java.awt.Point start, java.awt.Point end);
  23.  
  24.  
  25.   public static final com.ms.com._Guid iid = new com.ms.com._Guid((int)0xeffa21e1, (short)0x6928, (short)0x11d0, (byte)0xbf, (byte)0xfc, (byte)0x0, (byte)0xaa, (byte)0x0, (byte)0x3c, (byte)0xfd, (byte)0xfc);
  26. }
  27.