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

Examples of org.zkoss.poi.hssf.record.aggregates.RecordAggregate.RecordVisitor


    public List<DataValidation> getDataValidations() {
      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;
    }
View Full Code Here

TOP

Related Classes of org.zkoss.poi.hssf.record.aggregates.RecordAggregate.RecordVisitor

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.