datasource.java

来自「此文件为OPC Client IsVJTrend源代码,在VJ++开发环境下调试」· Java 代码 · 共 51 行

JAVA
51
字号
//
// Auto-generated using JActiveX.EXE 5.00.2918
//   ("D:\Program Files\Microsoft Visual Studio\VJ98\jactivex.exe" /wfc /t "D:\Program Files\Microsoft Visual Studio\VJ98\wfc.jnf" /w /xi /X:rkc /l "C:\TEMP\jvcCBC.tmp" /nologo /d "E:\InfoServer\clients\Java\Trend\ISVjTrend" "C:\WINNT\System32\MSCHRT20.OCX")
//
// WARNING: Do not remove the comments that include "@com" directives.
// This source file must be compiled by a @com-aware compiler.
// If you are using the Microsoft Visual J++ compiler, you must use
// version 1.02.3920 or later. Previous versions will not issue an error
// but will not generate COM-enabled class files.
//

package msdatsrc;

import com.ms.com.*;
import com.ms.com.IUnknown;
import com.ms.com.Variant;
import mschrt20.*;

// VTable-only interface DataSource
/** @com.interface(iid=7C0FFAB3-CD84-11D0-949A-00A0C91110ED, thread=AUTO) */
public interface DataSource extends IUnknown
{
  /** @com.method(vtoffset=0, addFlagsVtable=4)
      @com.parameters([in,type=STRING] bstrDM, [in,type=PTR] riid, [iid=00000000-0000-0000-C000-000000000046,thread=AUTO,type=OBJECT] return)
      @hidden */
  public IUnknown getDataMember(String bstrDM, com.ms.com._Guid riid);

  /** @com.method(vtoffset=1, addFlagsVtable=4)
      @com.parameters([in,type=I4] lIndex, [type=STRING] return)
      @hidden */
  public String getDataMemberName(int lIndex);

  /** @com.method(vtoffset=2, addFlagsVtable=4)
      @com.parameters([type=I4] return)
      @hidden */
  public int getDataMemberCount();

  /** @com.method(vtoffset=3, addFlagsVtable=4)
      @com.parameters([in,iid=7C0FFAB2-CD84-11D0-949A-00A0C91110ED,thread=AUTO,type=OBJECT] pDSL)
      @hidden */
  public void addDataSourceListener(msdatsrc.DataSourceListener pDSL);

  /** @com.method(vtoffset=4, addFlagsVtable=4)
      @com.parameters([in,iid=7C0FFAB2-CD84-11D0-949A-00A0C91110ED,thread=AUTO,type=OBJECT] pDSL)
      @hidden */
  public void removeDataSourceListener(msdatsrc.DataSourceListener pDSL);


  public static final com.ms.com._Guid iid = new com.ms.com._Guid((int)0x7c0ffab3, (short)0xcd84, (short)0x11d0, (byte)0x94, (byte)0x9a, (byte)0x0, (byte)0xa0, (byte)0xc9, (byte)0x11, (byte)0x10, (byte)0xed);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?