File tree Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 3
3
<Class name =" UMLExplorer.ClassView" >
4
4
<Description >
5
5
Class contains methods that return structured class data.</Description >
6
- <TimeChanged >63670,72515.130814 </TimeChanged >
6
+ <TimeChanged >63671,64479.682329 </TimeChanged >
7
7
<TimeCreated >63653,67019.989197</TimeCreated >
8
8
9
9
<Method name =" getClassTree" >
@@ -60,6 +60,7 @@ return structured data about class</Description>
60
60
61
61
set oProperties = ##class(%ZEN.proxyObject).%New()
62
62
set oClass.NAMESPACE = $NAMESPACE
63
+ set oClass.ABSTRACT = classDefinition.Abstract
63
64
set oClass.super = classDefinition.Super
64
65
set oClass.properties = oProperties
65
66
set count = classDefinition.Properties.Count()
@@ -220,7 +221,7 @@ return structured data about class</Description>
220
221
</Class >
221
222
222
223
223
- <Project name =" UMLExplorer" LastModified =" 2015-04-28 19:55:49.450783 " >
224
+ <Project name =" UMLExplorer" LastModified =" 2015-04-28 23:30:37.941872 " >
224
225
<Items >
225
226
<ProjectItem name =" UMLExplorer.ClassView" type =" CLS" ></ProjectItem >
226
227
<ProjectItem name =" UMLExplorer.Router" type =" CLS" ></ProjectItem >
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " CacheUMLExplorer" ,
3
- "version" : " 0.5.0 " ,
3
+ "version" : " 0.5.1 " ,
4
4
"description" : " An UML Class explorer for InterSystems Caché" ,
5
5
"directories" : {
6
6
"test" : " test"
Original file line number Diff line number Diff line change @@ -17222,9 +17222,9 @@ if ( typeof window === "object" && typeof window.document === "object" ) {
17222
17222
tspan.node.style[j] = setup["STYLES"][j];
17223
17223
}
17224
17224
}
17225
- if (opt.clickHandler) {
17226
- tspan.node.onclick = opt.clickHandler;
17227
- }
17225
+ }
17226
+ if ( opt.clickHandler) {
17227
+ tspan.node.onclick = opt.clickHandler;
17228
17228
}
17229
17229
// Make sure the textContent is never empty. If it is, add an additional
17230
17230
// 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({
103
103
104
104
attrs [ '.uml-class-' + rect . type + '-text' ] . text = lines . join ( '\n' ) ;
105
105
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
+ }
107
109
}
108
110
attrs [ '.uml-class-' + rect . type + '-rect' ] . height = rectHeight ;
109
111
attrs [ '.uml-class-' + rect . type + '-rect' ] . transform = 'translate(0,' + offsetY + ')' ;
You can’t perform that action at this time.
0 commit comments