Regalamiunsorriso/rus/WEB-INF/lib/jxl_src/jxl/WorkbookSettings.java

337 lines
8.5 KiB
Java
Raw Normal View History

2026-03-14 20:04:39 +01:00
package jxl;
import java.io.File;
import java.util.HashMap;
import java.util.Locale;
import jxl.biff.CountryCode;
import jxl.biff.formula.FunctionNames;
import jxl.common.Logger;
public final class WorkbookSettings {
private static Logger logger = Logger.getLogger(WorkbookSettings.class);
private int initialFileSize;
private int arrayGrowSize;
private boolean drawingsDisabled;
private boolean namesDisabled;
private boolean formulaReferenceAdjustDisabled;
private boolean gcDisabled;
private boolean rationalizationDisabled;
private boolean mergedCellCheckingDisabled;
private boolean propertySetsDisabled;
private boolean cellValidationDisabled;
private boolean ignoreBlankCells;
private boolean autoFilterDisabled;
private boolean useTemporaryFileDuringWrite;
private File temporaryFileDuringWriteDirectory;
private Locale locale;
private FunctionNames functionNames;
private String encoding;
private int characterSet;
private String excelDisplayLanguage;
private String excelRegionalSettings;
private HashMap localeFunctionNames;
private boolean refreshAll;
private boolean template;
private boolean excel9file = false;
private boolean windowProtected;
private String writeAccess;
private int hideobj;
public static final int HIDEOBJ_HIDE_ALL = 2;
public static final int HIDEOBJ_SHOW_PLACEHOLDERS = 1;
public static final int HIDEOBJ_SHOW_ALL = 0;
private static final int DEFAULT_INITIAL_FILE_SIZE = 5242880;
private static final int DEFAULT_ARRAY_GROW_SIZE = 1048576;
public WorkbookSettings() {
this.initialFileSize = 5242880;
this.arrayGrowSize = 1048576;
this.localeFunctionNames = new HashMap();
this.excelDisplayLanguage = CountryCode.USA.getCode();
this.excelRegionalSettings = CountryCode.UK.getCode();
this.refreshAll = false;
this.template = false;
this.excel9file = false;
this.windowProtected = false;
this.hideobj = 0;
try {
boolean suppressWarnings = Boolean.getBoolean("jxl.nowarnings");
setSuppressWarnings(suppressWarnings);
this.drawingsDisabled = Boolean.getBoolean("jxl.nodrawings");
this.namesDisabled = Boolean.getBoolean("jxl.nonames");
this.gcDisabled = Boolean.getBoolean("jxl.nogc");
this.rationalizationDisabled = Boolean.getBoolean("jxl.norat");
this.mergedCellCheckingDisabled = Boolean.getBoolean("jxl.nomergedcellchecks");
this.formulaReferenceAdjustDisabled = Boolean.getBoolean("jxl.noformulaadjust");
this.propertySetsDisabled = Boolean.getBoolean("jxl.nopropertysets");
this.ignoreBlankCells = Boolean.getBoolean("jxl.ignoreblanks");
this.cellValidationDisabled = Boolean.getBoolean("jxl.nocellvalidation");
this.autoFilterDisabled = !Boolean.getBoolean("jxl.autofilter");
this.useTemporaryFileDuringWrite = Boolean.getBoolean("jxl.usetemporaryfileduringwrite");
String tempdir = System.getProperty("jxl.temporaryfileduringwritedirectory");
if (tempdir != null)
this.temporaryFileDuringWriteDirectory = new File(tempdir);
this.encoding = System.getProperty("file.encoding");
} catch (SecurityException e) {
logger.warn("Error accessing system properties.", e);
}
try {
if (System.getProperty("jxl.lang") == null || System.getProperty("jxl.country") == null) {
this.locale = Locale.getDefault();
} else {
this.locale = new Locale(System.getProperty("jxl.lang"), System.getProperty("jxl.country"));
}
if (System.getProperty("jxl.encoding") != null)
this.encoding = System.getProperty("jxl.encoding");
} catch (SecurityException e) {
logger.warn("Error accessing system properties.", e);
this.locale = Locale.getDefault();
}
}
public void setArrayGrowSize(int sz) {
this.arrayGrowSize = sz;
}
public int getArrayGrowSize() {
return this.arrayGrowSize;
}
public void setInitialFileSize(int sz) {
this.initialFileSize = sz;
}
public int getInitialFileSize() {
return this.initialFileSize;
}
public boolean getDrawingsDisabled() {
return this.drawingsDisabled;
}
public boolean getGCDisabled() {
return this.gcDisabled;
}
public boolean getNamesDisabled() {
return this.namesDisabled;
}
public void setNamesDisabled(boolean b) {
this.namesDisabled = b;
}
public void setDrawingsDisabled(boolean b) {
this.drawingsDisabled = b;
}
public void setRationalization(boolean r) {
this.rationalizationDisabled = !r;
}
public boolean getRationalizationDisabled() {
return this.rationalizationDisabled;
}
public boolean getMergedCellCheckingDisabled() {
return this.mergedCellCheckingDisabled;
}
public void setMergedCellChecking(boolean b) {
this.mergedCellCheckingDisabled = !b;
}
public void setPropertySets(boolean r) {
this.propertySetsDisabled = !r;
}
public boolean getPropertySetsDisabled() {
return this.propertySetsDisabled;
}
public void setSuppressWarnings(boolean w) {
logger.setSuppressWarnings(w);
}
public boolean getFormulaAdjust() {
return !this.formulaReferenceAdjustDisabled;
}
public void setFormulaAdjust(boolean b) {
this.formulaReferenceAdjustDisabled = !b;
}
public void setLocale(Locale l) {
this.locale = l;
}
public Locale getLocale() {
return this.locale;
}
public String getEncoding() {
return this.encoding;
}
public void setEncoding(String enc) {
this.encoding = enc;
}
public FunctionNames getFunctionNames() {
if (this.functionNames == null) {
this.functionNames = (FunctionNames)this.localeFunctionNames.get(this.locale);
if (this.functionNames == null) {
this.functionNames = new FunctionNames(this.locale);
this.localeFunctionNames.put(this.locale, this.functionNames);
}
}
return this.functionNames;
}
public int getCharacterSet() {
return this.characterSet;
}
public void setCharacterSet(int cs) {
this.characterSet = cs;
}
public void setGCDisabled(boolean disabled) {
this.gcDisabled = disabled;
}
public void setIgnoreBlanks(boolean ignoreBlanks) {
this.ignoreBlankCells = ignoreBlanks;
}
public boolean getIgnoreBlanks() {
return this.ignoreBlankCells;
}
public void setCellValidationDisabled(boolean cv) {
this.cellValidationDisabled = cv;
}
public boolean getCellValidationDisabled() {
return this.cellValidationDisabled;
}
public String getExcelDisplayLanguage() {
return this.excelDisplayLanguage;
}
public String getExcelRegionalSettings() {
return this.excelRegionalSettings;
}
public void setExcelDisplayLanguage(String code) {
this.excelDisplayLanguage = code;
}
public void setExcelRegionalSettings(String code) {
this.excelRegionalSettings = code;
}
public boolean getAutoFilterDisabled() {
return this.autoFilterDisabled;
}
public void setAutoFilterDisabled(boolean disabled) {
this.autoFilterDisabled = disabled;
}
public boolean getUseTemporaryFileDuringWrite() {
return this.useTemporaryFileDuringWrite;
}
public void setUseTemporaryFileDuringWrite(boolean temp) {
this.useTemporaryFileDuringWrite = temp;
}
public void setTemporaryFileDuringWriteDirectory(File dir) {
this.temporaryFileDuringWriteDirectory = dir;
}
public File getTemporaryFileDuringWriteDirectory() {
return this.temporaryFileDuringWriteDirectory;
}
public void setRefreshAll(boolean refreshAll) {
this.refreshAll = refreshAll;
}
public boolean getRefreshAll() {
return this.refreshAll;
}
public boolean getTemplate() {
return this.template;
}
public void setTemplate(boolean template) {
this.template = template;
}
public boolean getExcel9File() {
return this.excel9file;
}
public void setExcel9File(boolean excel9file) {
this.excel9file = excel9file;
}
public boolean getWindowProtected() {
return this.windowProtected;
}
public void setWindowProtected(boolean windowprotected) {
this.windowProtected = this.windowProtected;
}
public int getHideobj() {
return this.hideobj;
}
public void setHideobj(int hideobj) {
this.hideobj = hideobj;
}
public String getWriteAccess() {
return this.writeAccess;
}
public void setWriteAccess(String writeAccess) {
this.writeAccess = writeAccess;
}
}