Package jxl.read.biff

Examples of jxl.read.biff.NameRecord


    final Map nameRecord = (Map) getField(this, "namedRecords");
    nameRecord.remove("ERROR");

    int j = 0;
    for (final Iterator it = nameTable.iterator(); it.hasNext(); ++j) {
      final NameRecord nr = (NameRecord) it.next();
      if ("ERROR".equals(nr.getName())) {
        updateNameRecordName(nr);
        nameRecord.put(nr.getName(), nr);
      }
    }
  }
View Full Code Here

TOP

Related Classes of jxl.read.biff.NameRecord

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.