Ejemplo n.º 1
0
 /**
  * Return true if all PC are closed
  *
  * @return true if closed
  */
 public boolean isClosed() {
   MPeriodControl[] pcs = getPeriodControls(false);
   for (MPeriodControl pc : pcs) {
     if (!pc.isClosed()) return false;
   }
   return true;
 } //	isClosed