private int complexityMultipleOf(PLSQLNode node, int npathStart, Object data) {
    LOGGER.entering(CLASS_NAME, "complexityMultipleOf(SimpleNode)");

    int npath = npathStart;
    PLSQLNode n;

    for (int i = 0; i < node.jjtGetNumChildren(); i++) {
      n = (PLSQLNode) node.jjtGetChild(i);
      npath *= (Integer) n.jjtAccept(this, data);
    }

    LOGGER.exiting(CLASS_NAME, "complexityMultipleOf(SimpleNode)", npath);
    return npath;
  }