package Structure;

import j4d.open.*;

class Examplet {

  /* getNumberTables allows you to retrieve the number of tables in the 4D database
  */
  public int getNumberTables(opProcess process) throws opException {

    int mNbTables;

    try{
      mNbTables = process.CountTables();
    }
    catch (opException er){throw er;}

    return mNbTables;
  }


}