@webref xml:method @brief Sets the content of an attribute as a float
(String name, float value)
| 844 | * @brief Sets the content of an attribute as a float |
| 845 | */ |
| 846 | public void setFloat(String name, float value) { |
| 847 | setString(name, String.valueOf(value)); |
| 848 | } |
| 849 | |
| 850 | |
| 851 | public double getDouble(String name) { |