File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33<Class name =" UMLExplorer.ClassView" >
44<Description >
55Class contains methods that return structured class data.</Description >
6- <TimeChanged >63670,72515.130814 </TimeChanged >
6+ <TimeChanged >63671,64479.682329 </TimeChanged >
77<TimeCreated >63653,67019.989197</TimeCreated >
88
99<Method name =" getClassTree" >
@@ -60,6 +60,7 @@ return structured data about class</Description>
6060
6161 set oProperties = ##class(%ZEN.proxyObject).%New()
6262 set oClass.NAMESPACE = $NAMESPACE
63+ set oClass.ABSTRACT = classDefinition.Abstract
6364 set oClass.super = classDefinition.Super
6465 set oClass.properties = oProperties
6566 set count = classDefinition.Properties.Count()
@@ -220,7 +221,7 @@ return structured data about class</Description>
220221</Class >
221222
222223
223- <Project name =" UMLExplorer" LastModified =" 2015-04-28 19:55:49.450783 " >
224+ <Project name =" UMLExplorer" LastModified =" 2015-04-28 23:30:37.941872 " >
224225 <Items >
225226 <ProjectItem name =" UMLExplorer.ClassView" type =" CLS" ></ProjectItem >
226227 <ProjectItem name =" UMLExplorer.Router" type =" CLS" ></ProjectItem >
Original file line number Diff line number Diff line change 11{
22 "name" : " CacheUMLExplorer" ,
3- "version" : " 0.5.0 " ,
3+ "version" : " 0.5.1 " ,
44 "description" : " An UML Class explorer for InterSystems Caché" ,
55 "directories" : {
66 "test" : " test"
Original file line number Diff line number Diff line change @@ -17222,9 +17222,9 @@ if ( typeof window === "object" && typeof window.document === "object" ) {
1722217222 tspan.node.style[j] = setup["STYLES"][j];
1722317223 }
1722417224 }
17225- if (opt.clickHandler) {
17226- tspan.node.onclick = opt.clickHandler;
17227- }
17225+ }
17226+ if ( opt.clickHandler) {
17227+ tspan.node.onclick = opt.clickHandler;
1722817228 }
1722917229 // Make sure the textContent is never empty. If it is, add an additional
1723017230 // space (an invisible character) so that following lines are correctly
Original file line number Diff line number Diff line change @@ -103,7 +103,9 @@ joint.shapes.uml.Class = joint.shapes.basic.Generic.extend({
103103
104104 attrs [ '.uml-class-' + rect . type + '-text' ] . text = lines . join ( '\n' ) ;
105105 if ( nameClickHandler ) {
106- if ( rect . type === "name" ) attrs [ '.uml-class-' + rect . type + '-text' ] . clickHandler = nameClickHandler ;
106+ if ( rect . type === "name" ) {
107+ attrs [ '.uml-class-' + rect . type + '-text' ] . clickHandler = nameClickHandler ;
108+ }
107109 }
108110 attrs [ '.uml-class-' + rect . type + '-rect' ] . height = rectHeight ;
109111 attrs [ '.uml-class-' + rect . type + '-rect' ] . transform = 'translate(0,' + offsetY + ')' ;
You can’t perform that action at this time.
0 commit comments