use of org.freeplane.view.swing.map.cloud.CloudViewFactory in project freeplane by freeplane.
the class NodeView method paintCloud.
private void paintCloud(final Graphics g) {
if (!isContentVisible()) {
return;
}
final CloudModel cloudModel = getCloudModel();
if (cloudModel == null) {
return;
}
final CloudView cloud = new CloudViewFactory().createCloudView(cloudModel, this);
cloud.paint(g);
}
Aggregations