Package org.zkoss.poi.hssf.record.aggregates

Examples of org.zkoss.poi.hssf.record.aggregates.DataValidityTable.visitContainedRecords()


      if (_dataValidations == null) {
        //populate the _dataValidations list
        final DataValidityTable tb = _helper.getInternalSheet().getOrCreateDataValidityTable();
        _dataValidations = new ArrayList<DataValidation>();
        final RecordVisitor rv = new DVRecordVisitor();
        tb.visitContainedRecords(rv);
      }
      return _dataValidations;
    }
   
    //20100910, henrichen@zkoss.org: nullify the cached data validation list
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.