Package org.freeplane.api
Interface Icons
- All Superinterfaces:
IconsRO
- All Known Subinterfaces:
Proxy.Icons
Node's icons:
node.icons
- read-write.-
Method Summary
Modifier and TypeMethodDescriptionvoid
adds an icon to a node if an icon for the given key can be found.void
addAll
(Collection<String> names) void
void
Deprecated.void
clear()
removes all icons.boolean
remove
(int index) deletes the icon at the given index, returns true if success (icon existed).boolean
deletes first occurence of icon with the given name, returns true if success (icon existed).boolean
removeIcon
(String name) Deprecated.since 1.2 - useremove(String)
instead.
-
Method Details
-
add
adds an icon to a node if an icon for the given key can be found. The same icon can be added multiple times.println("all available icon keys: " + FreeplaneIconUtils.listStandardIconKeys()) node.icons.addIcon("button_ok")
- See Also:
-
addAll
- Since:
- 1.4
-
addAll
- Since:
- 1.4
-
addIcon
Deprecated.since 1.2 - useadd(String)
instead. -
remove
boolean remove(int index) deletes the icon at the given index, returns true if success (icon existed). -
remove
deletes first occurence of icon with the given name, returns true if success (icon existed). -
removeIcon
Deprecated.since 1.2 - useremove(String)
instead. -
clear
void clear()removes all icons.- Since:
- 1.2
-
add(String)
instead.