1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portal.util;
16  
17  /**
18   * <a href="PropsUtil_IW.java.html"><b><i>View Source</i></b></a>
19   *
20   * @author Brian Wing Shun Chan
21   */
22  public class PropsUtil_IW {
23      public static PropsUtil_IW getInstance() {
24          return _instance;
25      }
26  
27      public void addProperties(java.util.Properties properties) {
28          PropsUtil.addProperties(properties);
29      }
30  
31      public boolean contains(java.lang.String key) {
32          return PropsUtil.contains(key);
33      }
34  
35      public java.lang.String get(java.lang.String key) {
36          return PropsUtil.get(key);
37      }
38  
39      public java.lang.String get(java.lang.String key,
40          com.liferay.portal.kernel.configuration.Filter filter) {
41          return PropsUtil.get(key, filter);
42      }
43  
44      public java.lang.String[] getArray(java.lang.String key) {
45          return PropsUtil.getArray(key);
46      }
47  
48      public java.lang.String[] getArray(java.lang.String key,
49          com.liferay.portal.kernel.configuration.Filter filter) {
50          return PropsUtil.getArray(key, filter);
51      }
52  
53      public java.util.Properties getProperties() {
54          return PropsUtil.getProperties();
55      }
56  
57      public java.util.Properties getProperties(java.lang.String prefix,
58          boolean removePrefix) {
59          return PropsUtil.getProperties(prefix, removePrefix);
60      }
61  
62      public void removeProperties(java.util.Properties properties) {
63          PropsUtil.removeProperties(properties);
64      }
65  
66      public void set(java.lang.String key, java.lang.String value) {
67          PropsUtil.set(key, value);
68      }
69  
70      private PropsUtil_IW() {
71      }
72  
73      private static PropsUtil_IW _instance = new PropsUtil_IW();
74  }