| |
|
| java.lang.Object net.sf.jasperreports.engine.JRPropertiesMap
JRPropertiesMap | public class JRPropertiesMap implements Serializable(Code) | | Properties map of an JR element.
The order of the properties (obtained by
JRPropertiesMap.getPropertyNames() getPropertyNames() is the same as the order in which the properties were added.
author: Lucian Chirita (lucianc@users.sourceforge.net) version: $Id: JRPropertiesMap.java 1832 2007-08-24 15:41:50Z teodord $ |
JRPropertiesMap | public JRPropertiesMap()(Code) | | Creates a properties map.
|
JRPropertiesMap | public JRPropertiesMap(JRPropertiesMap propertiesMap)(Code) | | Clones a properties map.
Parameters: propertiesMap - the original properties map |
cloneProperties | public JRPropertiesMap cloneProperties()(Code) | | Clones this property map.
a clone of this property map |
getProperty | public String getProperty(String propName)(Code) | | Returns the value of a property.
Parameters: propName - the name of the property the value |
getPropertyNames | public String[] getPropertyNames()(Code) | | Returns the names of the properties.
the names of the properties |
removeProperty | public void removeProperty(String propName)(Code) | | Removes a property.
Parameters: propName - the property name |
setProperty | public void setProperty(String propName, String value)(Code) | | Adds/sets a property value.
Parameters: propName - the name of the property Parameters: value - the value of the property |
|
|
|