Returns a map of the global TemplateModel objects (those that do not depend on a PC) Note that ownership of the returned map is transferred to the calling object, no changes to the returned map will impact OutputDB, nor will changes to OutputDB impact the returned Map. @return a Map of the global
()
| 283 | * @return a Map of the global TemplateModel objects |
| 284 | */ |
| 285 | public static Map<Object, TemplateModel> getGlobal() |
| 286 | { |
| 287 | Map<Object, TemplateModel> map = new CaseInsensitiveMap<>(); |
| 288 | map.putAll(globalModels); |
| 289 | return map; |
| 290 | } |
| 291 | |
| 292 | /** |
| 293 | * Registers a new Boolean Preference for inclusion in the global Models. |