User: kz Date: 2008-03-05 17:24:04+0000 Modified: dba/reportdesign/java/com/sun/star/report/ParameterMap.java
Log: INTEGRATION: CWS rptchart01_DEV300 (1.2.70); FILE MERGED 2008/02/20 10:52:54 oj 1.2.70.1: format changes File Changes: Directory: /dba/reportdesign/java/com/sun/star/report/ ====================================================== File [changed]: ParameterMap.java Url: http://dba.openoffice.org/source/browse/dba/reportdesign/java/com/sun/star/report/ParameterMap.java?r1=1.2&r2=1.3 Delta lines: +36 -38 --------------------- --- ParameterMap.java 2007-07-09 11:56:03+0000 1.2 +++ ParameterMap.java 2008-03-05 17:24:01+0000 1.3 @@ -33,8 +33,6 @@ * MA 02111-1307 USA * ************************************************************************/ - - package com.sun.star.report; public interface ParameterMap @@ -48,7 +46,7 @@ * @param key the property key. * @param value the property value. */ - public void put (final String key, final Object value); + public void put(final String key, final Object value); /** * Retrieves the value stored for a key in this properties collection. @@ -57,7 +55,7 @@ * @return The stored value, or <code>null</code> if the key does not exist in this * collection. */ - public Object get (final String key); + public Object get(final String key); /** * Retrieves the value stored for a key in this properties collection, and returning the @@ -69,11 +67,11 @@ * @return The stored value, or the default value if the key does not exist in this * collection. */ - public Object get (final String key, final Object defaultValue); + public Object get(final String key, final Object defaultValue); - public String[] keys (); + public String[] keys(); - public void clear (); + public void clear(); public int size(); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
