Product Documentation

V11.5 Update Guide

Previous Topic

Next Topic

MRT Table support added to Java interfaces

As part of the effort to add methods for MRT Tables to C++, Java, and .NET API stacks, the following methods have been added to the .NET low-level Java class:

  • public static CTDBRET CreateMRTTable(IntPtr Table, String Name, String ParentName, CREATE_MODE CreateMode, String Filter)
  • public static CTDBRET AddMRTTable(IntPtr Database, String Name, String ParentName, ULONG Info)
  • public static ULONG GetVTableNumber(IntPtr Table)
  • public static bool IsVTable(IntPtr Table)
  • public static CTDBRET RemoveVTableResource(IntPtr Table, NINT Number)
  • public static CTDBRET SetMRTTableFilter(IntPtr Table, String Condition)

The following methods have been added to the Java high-level CTTable class:

  • public virtual void CreateMRTTable(String Name, String ParentName, CREATE_MODE CreateMode, String Filter)
  • public virtual void AddMRTTable(IntPtr Database, String Name, String ParentName, ULONG Info)
  • public virtual ULONG GetVTableNumber()
  • public virtual bool IsVTable()
  • public virtual void RemoveVTableResource(IntPtr Parent, NINT Number)
  • public virtual void SetMRTTableFilter(String Condition)

TOCIndex