Package org.freeplane.api
Interface Properties
- All Known Subinterfaces:
- Proxy.Properties
public interface Properties
- 
Method SummaryModifier and TypeMethodDescriptionProvides map-like access to properties.keySet()returns the names of all attributes.Allows to set and to change properties.
- 
Method Details- 
getAtProvides map-like access to properties. Note that the returned type is aConvertible, not a String as in the basic storage. Nevertheless it behaves like a String in almost all respects, that is, in Groovy scripts it understands all String methods like lenght(), matches() etc.
 Note that unlike Attributes.getAt() this method will return null if the property is not set!- Since:
- 1.3.6
 
- 
putAtAllows to set and to change properties.- Parameters:
- value- An object for conversion to String. Works well for all types that- Convertiblehandles, particularly- Convertibles itself. Use null to unset an attribute.
- Returns:
- the new value
- Since:
- 1.3.6
 
- 
keySetreturns the names of all attributes.- Since:
- 1.3.6
 
 
-