Skip to content
Snippets Groups Projects
Commit 768b79c3 authored by Nils Christian Ehmke's avatar Nils Christian Ehmke
Browse files

#25

parent e02a0aa9
No related branches found
No related tags found
No related merge requests found
1.1:
22 Nov 2015
Feature (Issue #25)
Detailed the settings for operation and component appearances.
22 Nov 2015
Feature (Issue #28)
It is now possible to double click on an aggregated method call to jump directly to the corresponding actual calls.
......
......@@ -28,8 +28,11 @@ public class ComponentNamesStringConverter extends AbstractStringConverter<Compo
@Override
protected void fillMapper(final Mapper<ComponentNames, String> mapper, final ResourceBundle resourceBundle) {
mapper.map(ComponentNames.SHORT).to("Catalog");
mapper.map(ComponentNames.LONG).to("kieker.examples.bookstore.Catalog");
final String shortStr = resourceBundle.getString("short");
final String longStr = resourceBundle.getString("long");
mapper.map(ComponentNames.SHORT).to(shortStr + " (Catalog)");
mapper.map(ComponentNames.LONG).to(longStr + " (kieker.examples.bookstore.Catalog)");
}
}
......@@ -28,8 +28,11 @@ public class OperationNamesStringConverter extends AbstractStringConverter<Opera
@Override
protected void fillMapper(final Mapper<OperationNames, String> mapper, final ResourceBundle resourceBundle) {
mapper.map(OperationNames.SHORT).to("getBook(...)");
mapper.map(OperationNames.LONG).to("public void kieker.examples.bookstore.Catalog.getBook(boolean)");
final String shortStr = resourceBundle.getString("short");
final String longStr = resourceBundle.getString("long");
mapper.map(OperationNames.SHORT).to(shortStr + " (getBook(...))");
mapper.map(OperationNames.LONG).to(longStr + " (public void kieker.examples.bookstore.Catalog.getBook(boolean))");
}
}
......@@ -8,4 +8,6 @@ days=Days (d)
yes=Yes
no=No
threshold=Threshold
methodCallsAggregated=method calls aggregated
\ No newline at end of file
methodCallsAggregated=method calls aggregated
short=Short presentation
long=Long presentation
\ No newline at end of file
......@@ -8,4 +8,6 @@ days=Tage (d)
yes=Ja
no=Nein
threshold=Schwellwert
methodCallsAggregated=Methodenaufrufe zusammengefasst
\ No newline at end of file
methodCallsAggregated=Methodenaufrufe zusammengefasst
short=Kurze Darstellung
long=Lange Darstellung
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment