File tree Expand file tree Collapse file tree
java/org/jqassistant/contrib/plugin/kieker/api/model
resources/META-INF/jqassistant-rules Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 <parent >
77 <groupId >org.jqassistant.contrib.common</groupId >
88 <artifactId >parent</artifactId >
9- <version >1.6 .0</version >
9+ <version >1.7 .0</version >
1010 </parent >
1111
1212 <groupId >org.jqassistant.contrib.plugin.kieker</groupId >
1313 <artifactId >jqa-kieker-plugin</artifactId >
14- <version >1. 0.0-SNAPSHOT </version >
14+ <version >0.0.1 </version >
1515
1616 <name >jQAssistant Kieker Plugin</name >
1717 <description >The jQAssistant plugin to scan and to analyze Kieker trace logs.</description >
2929 </developer >
3030 </developers >
3131
32+ <scm >
33+ <
connection >scm:git:
[email protected] :softvis-research/jqa-kieker-plugin.git</
connection >
34+ <
developerConnection >scm:git:
[email protected] :/softvis-research/jqa-kieker-plugin.git</
developerConnection >
35+ <url >https://github.com//softvis-research/jqa-kieker-plugin</url >
36+ <tag >HEAD</tag >
37+ </scm >
38+
3239 <licenses >
3340 <license >
3441 <name >GNU General Public License, v3</name >
Original file line number Diff line number Diff line change 99 */
1010@ Label ("Call" )
1111public interface CallEventDescriptor extends EventDescriptor , Descriptor {
12- @ Relation ("CALLER " )
12+ @ Relation ("CALLED_BY " )
1313 MethodDescriptor getCaller ();
1414
1515 void setCaller (MethodDescriptor caller );
1616
17- @ Relation ("CALLEE " )
17+ @ Relation ("CALLS " )
1818 MethodDescriptor getCallee ();
1919
2020 void setCallee (MethodDescriptor callee );
Original file line number Diff line number Diff line change 99 */
1010@ Label ("Execution" )
1111public interface ExecutionEventDescriptor extends EventDescriptor , Descriptor {
12- @ Relation ("EXECUTION " )
12+ @ Relation ("EXECUTES " )
1313 MethodDescriptor getExecutedMethod ();
1414
1515 void setExecutedMethod (MethodDescriptor executedMethod );
Original file line number Diff line number Diff line change 99 </description >
1010 <cypher ><![CDATA[
1111 MATCH
12- (e:Execution)-[:EXECUTION ]->(m:Method)
12+ (e:Execution)-[:EXECUTES ]->(m:Method)
1313 WITH
1414 m, SUM(e.afterTimestamp - e.beforeTimestamp) AS duration
1515 SET
2323 </description >
2424 <cypher ><![CDATA[
2525 MATCH
26- (c:Call)-[:CALLER ]->(caller:Method)
26+ (c:Call)-[:CALLED_BY ]->(caller:Method)
2727 MATCH
28- (c:Call)-[:CALLEE ]->(callee:Method)
28+ (c:Call)-[:CALLS ]->(callee:Method)
2929 MERGE
3030 (caller)-[calls:CALLS]->(callee)
3131 RETURN
You can’t perform that action at this time.
0 commit comments