Package org.freeplane.api
Interface MindMapRO
- All Known Subinterfaces:
Map
,MapRO
,MindMap
,Proxy.Map
,Proxy.MapRO
,Proxy.MindMap
,Proxy.MindMapRO
public interface MindMapRO
The map a node belongs to:
node.map
- read-only.- Since:
- 1.7.10
-
Method Summary
Modifier and Type Method Description java.awt.Color
getBackgroundColor()
java.lang.String
getBackgroundColorCode()
returns HTML color spec like #ff0000 (red) or #222222 (darkgray).ConditionalStyles
getConditionalStyles()
java.io.File
getFile()
returns the filenname of the map as a java.io.File object if available or null otherwise.java.lang.String
getName()
returns the title of the MapView.Node
getRoot()
Node
getRootNode()
Deprecated.boolean
isSaved()
Node
node(java.lang.String id)
get node by id.
-
Method Details
-
getRoot
Node getRoot()- Since:
- 1.2
-
getRootNode
Deprecated.since 1.2 - usegetRoot()
instead. -
node
get node by id.- Returns:
- the node if the map contains it or null otherwise.
-
getFile
java.io.File getFile()returns the filenname of the map as a java.io.File object if available or null otherwise. -
getName
java.lang.String getName()returns the title of the MapView.- Since:
- 1.2
-
isSaved
boolean isSaved()- Since:
- 1.2
-
getBackgroundColor
java.awt.Color getBackgroundColor()- Since:
- 1.2
-
getBackgroundColorCode
java.lang.String getBackgroundColorCode()returns HTML color spec like #ff0000 (red) or #222222 (darkgray).- Since:
- 1.2
-
getConditionalStyles
ConditionalStyles getConditionalStyles()- Since:
- 1.11.1
-
getRoot()
instead.