Package org.zkoss.zss.model.impl

Examples of org.zkoss.zss.model.impl.CellIndex


    super.remove(); //detach precedents

    //bug #1855750: FormulaListener not work if change the referenced formula cell
    //must check an empty to be really removed from the matrix
    if (force || isEmpty()) {
      final CellIndex lt = getLtIndex();
      final CellIndex rb = getRbIndex();
      if (lt != null) {
        lt.removeLtRef(this);
      }
      if (rb != null) {
        rb.removeRbRef(this);
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.zkoss.zss.model.impl.CellIndex

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.