| java.lang.Object it.businesslogic.ireport.IReportHashMapBean
All known Subclasses: it.businesslogic.ireport.ReportElement, it.businesslogic.ireport.IReportFont,
IReportHashMapBean | public class IReportHashMapBean implements Cloneable(Code) | | author: gtoffoli |
IReportHashMapBean | public IReportHashMapBean()(Code) | | Creates a new instance of IReportDynamicBean
|
getBooleanValue | public boolean getBooleanValue(String property, boolean defaultValue)(Code) | | Look for property in the map. The value must be true or false.
If the property is not found, the defaultValue is returned.
|
getColorValue | public java.awt.Color getColorValue(String property, java.awt.Color defaultValue)(Code) | | Look for property in the map. The value must be a Color object.
If the property is not found, the defaultValue is returned.
|
getDoubleValue | public int getDoubleValue(String property, int defaultValue)(Code) | | Look for property in the map. The value must rapresent a valid number.
If the property is not found, the defaultValue is returned.
If the number is not valid, a NumberFormatException is thrown
|
getIntValue | public int getIntValue(String property, int defaultValue)(Code) | | Look for property in the map. The value must rapresent a valid number.
If the property is not found, the defaultValue is returned.
If the number is not valid, a NumberFormatException is thrown
|
getPropertyValue | public Object getPropertyValue(String property)(Code) | | Shurtcut for getBeanProperties().get(property)
If property is null, the method return null
|
getStringValue | public String getStringValue(String property, String defaultValue)(Code) | | Look for property in the map.
If the property is not found, the defaultValue is returned.
|
setBeanProperties | public void setBeanProperties(HashMap beanProperties)(Code) | | |
setPropertyValue | public void setPropertyValue(String property, Object value)(Code) | | Shurtcut for getBeanProperties().put(property, value)
If property is null, the method does nothing
|
|
|