bump product version to 7.2.5.1
[LibreOffice.git] / toolkit / test / accessibility / Options.java
blob6cf6e48f2a31cfaec5d27154b43805e68caa6146
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 import java.io.File;
20 import java.io.FileInputStream;
21 import java.io.FileOutputStream;
22 import java.io.IOException;
23 import java.util.Properties;
25 /** Load from and save options into a file.
27 class Options
28 extends Properties
30 public static Options Instance ()
32 if (saOptions == null)
33 saOptions = new Options ();
34 return saOptions;
37 public static void SetBoolean (String sName, boolean bValue)
39 Instance().setProperty (sName, Boolean.toString(bValue));
42 public static boolean GetBoolean (String sName)
44 return Boolean.getBoolean(Instance().getProperty (sName));
47 public static void SetInteger (String sName, int nValue)
49 Instance().setProperty (sName, Integer.toString(nValue));
52 public static int GetInteger (String sName, int nDefault)
54 String sValue = Instance().getProperty (sName);
55 if (sValue == null)
56 return nDefault;
57 else
58 return Integer.parseInt (sValue);
61 public void Load (String sBaseName)
63 FileInputStream fis = null;
64 try
66 fis = new FileInputStream (ProvideFile(sBaseName));
67 load (fis);
69 catch (IOException e)
71 // Ignore a non-existing options file.
73 finally
75 try
77 if (fis != null)
78 fis.close();
80 catch (IOException ex)
86 public void Save (String sBaseName)
88 FileOutputStream fos = null;
89 try
91 fos = new FileOutputStream (ProvideFile(sBaseName));
92 store (fos, null);
94 catch (IOException e)
97 finally
99 try
101 if (fos != null)
102 fos.close();
104 catch (IOException ex)
110 private Options ()
114 private File ProvideFile (String sBaseName)
116 return new File (
117 System.getProperty ("user.home"),
118 sBaseName);
121 private static Options saOptions = null;