package NamedSelection;

import j4d.open.*;

class Examplet {

  /* doClearNamedSelection erase the specified selection
  */
  public void doClearNamedSelection(opProcess process) throws opException {

    int targetTable = 2;

    try{
      opSelection mSelection = new opSelection(targetTable,"My_Beautifull_Selection");
      process.ClearNamedSelection(mSelection);
    }
    catch (opException er){throw er;}
  }

}