use of org.freeplane.core.util.TextUtils in project freeplane by freeplane.
the class ScriptingConfiguration method createStaticProperties.
private static Map<String, Object> createStaticProperties() {
Map<String, Object> properties = new LinkedHashMap<String, Object>();
properties.put("logger", new LogUtils());
properties.put("ui", new UITools());
properties.put("htmlUtils", HtmlUtils.getInstance());
properties.put("textUtils", new TextUtils());
properties.put("menuUtils", new MenuUtils());
properties.put("config", new FreeplaneScriptBaseClass.ConfigProperties());
return properties;
}
Aggregations