Search in sources :

Example 1 with TextUtils

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;
}
Also used : UITools(org.freeplane.core.ui.components.UITools) MenuUtils(org.freeplane.core.util.MenuUtils) LogUtils(org.freeplane.core.util.LogUtils) TextUtils(org.freeplane.core.util.TextUtils) LinkedHashMap(java.util.LinkedHashMap)

Aggregations

LinkedHashMap (java.util.LinkedHashMap)1 UITools (org.freeplane.core.ui.components.UITools)1 LogUtils (org.freeplane.core.util.LogUtils)1 MenuUtils (org.freeplane.core.util.MenuUtils)1 TextUtils (org.freeplane.core.util.TextUtils)1