Package com.jacob.com

Examples of com.jacob.com.Variant


  public void setDefinedSize(int pl) {
    Dispatch.put(this, "DefinedSize", new Variant(pl));
  }

  public void setAttributes(int pl) {
    Dispatch.put(this, "Attributes", new Variant(pl));
  }
View Full Code Here


  public int getAbsolutePosition() {
    return Dispatch.get(this, "AbsolutePosition").getInt();
  }

  public void setAbsolutePosition(int pl) {
    Dispatch.put(this, "AbsolutePosition", new Variant(pl));
  }
View Full Code Here

  public int getCacheSize() {
    return Dispatch.get(this, "CacheSize").getInt();
  }

  public void setCacheSize(int pl) {
    Dispatch.put(this, "CacheSize", new Variant(pl));
  }
View Full Code Here

  public int getCursorType() {
    return Dispatch.get(this, "CursorType").getInt();
  }

  public void setCursorType(int pl) {
    Dispatch.put(this, "CursorType", new Variant(pl));
  }
View Full Code Here

  public int getLockType() {
    return Dispatch.get(this, "LockType").getInt();
  }

  public void setLockType(int plLockType) {
    Dispatch.put(this, "LockType", new Variant(plLockType));
  }
View Full Code Here

  public int getMaxRecords() {
    return Dispatch.get(this, "MaxRecords").getInt();
  }

  public void setMaxRecords(int pl) {
    Dispatch.put(this, "MaxRecords", new Variant(pl));
  }
View Full Code Here

  public void Close() {
    Dispatch.call(this, "Close");
  }

  public void Delete(int AffectRecords) {
    Dispatch.call(this, "Delete", new Variant(AffectRecords));
  }
View Full Code Here

  public void Delete(int AffectRecords) {
    Dispatch.call(this, "Delete", new Variant(AffectRecords));
  }

  public Variant GetRows(int Rows, Variant Start, Variant Fields) {
    return Dispatch.call(this, "GetRows", new Variant(Rows), Start, Fields);
  }
View Full Code Here

  public Variant GetRows() {
    return Dispatch.call(this, "GetRows");
  }

  public void Move(int NumRecords, Variant Start) {
    Dispatch.call(this, "Move", new Variant(NumRecords), Start);
  }
View Full Code Here

    Dispatch.call(this, "MoveLast");
  }

  public void Open(Variant Source, Variant ActiveConnection, int CursorType,
      int LockType, int Options) {
    Dispatch.call(this, "Open", Source, ActiveConnection, new Variant(
        CursorType), new Variant(LockType), new Variant(Options));
  }
View Full Code Here

TOP

Related Classes of com.jacob.com.Variant

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.