@@ -335,8 +335,8 @@ Setup basic output data object</Description>
335
335
336
336
set ns = $namespace
337
337
zn baseNamespace
338
- if $get(^UClassExplorer ("savedView", ns_":"_savedName)) '= "" {
339
- set oData.savedView = $get(^UClassExplorer ("savedView", ns_":"_savedName))
338
+ if $get(^ClassExplorer ("savedView", ns_":"_savedName)) '= "" {
339
+ set oData.savedView = $get(^ClassExplorer ("savedView", ns_":"_savedName))
340
340
}
341
341
zn ns
342
342
@@ -440,7 +440,7 @@ Method returns whole class tree visible in the current namespace.</Description>
440
440
<ClassMethod >1</ClassMethod >
441
441
<ReturnType >%Status</ReturnType >
442
442
<Implementation ><![CDATA[
443
- do ##class(ClassView).getClassTree(%request.Get("namespace")).%ToJSON(, "o")
443
+ do ##class(ClassExplorer. ClassView).getClassTree(%request.Get("namespace")).%ToJSON(, "o")
444
444
return $$$OK
445
445
]]> </Implementation >
446
446
</Method >
@@ -465,8 +465,8 @@ Saves the view preferences</Description>
465
465
<ReturnType >%Status</ReturnType >
466
466
<Implementation ><![CDATA[
467
467
set name = %request.Get("name")
468
- set content = %request.Content.Read($$$MaxStringLength) // ~ 7mb
469
- set ^UClassExplorer ("savedView", name) = content
468
+ set content = %request.Content.Read($$$MaxStringLength) // ~ 7mb
469
+ set ^ClassExplorer ("savedView", name) = content
470
470
write "{""OK"":true}"
471
471
return $$$OK
472
472
]]> </Implementation >
@@ -479,7 +479,7 @@ Saves the view preferences</Description>
479
479
<ReturnType >%Status</ReturnType >
480
480
<Implementation ><![CDATA[
481
481
set name = %request.Get("name")
482
- kill ^UClassExplorer ("savedView", name)
482
+ kill ^ClassExplorer ("savedView", name)
483
483
write "{""OK"":true}"
484
484
return $$$OK
485
485
]]> </Implementation >
@@ -504,7 +504,7 @@ Return the list of all namespaces</Description>
504
504
<ClassMethod >1</ClassMethod >
505
505
<ReturnType >%Status</ReturnType >
506
506
<Implementation ><![CDATA[
507
- do ##class(ClassView).getAllNamespacesList().%ToJSON(, "o")
507
+ do ##class(ClassExplorer. ClassView).getAllNamespacesList().%ToJSON(, "o")
508
508
return $$$OK
509
509
]]> </Implementation >
510
510
</Method >
0 commit comments