File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
kernel/src/main/java/com/itextpdf/kernel Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ This file is part of the iText (R) project.
56
56
* <p>
57
57
* You can implement your own {@link IEventCounterFactory} and register them with {@link EventCounterHandler#register(IEventCounterFactory)}
58
58
* Or implement {@link EventCounter} and register it with {@link SimpleEventCounterFactory} like this:
59
- * <code>EventCounterManager .getInstance().register(new SimpleEventCounterFactory(new SystemOutEventCounter());</code>
59
+ * <code>EventCounterHandler .getInstance().register(new SimpleEventCounterFactory(new SystemOutEventCounter());</code>
60
60
* {@link SystemOutEventCounter} is just an example of a {@link EventCounter} implementation.
61
61
* <p>
62
62
* This functionality can be used to create metrics in a SaaS context.
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ This file is part of the iText (R) project.
47
47
* Factory that can be registered in {@link EventCounterHandler} and creates a counter for every reader or writer class.
48
48
* <p>
49
49
* You can implement your own counter factory and register it like this:
50
- * <code>EventCounterManager .getInstance().registerCounter (new SystemOutEventCounterFactory());</code>
50
+ * <code>EventCounterHandler .getInstance().register (new SystemOutEventCounterFactory());</code>
51
51
* <p>
52
52
* {@link SystemOutEventCounterFactory} is just an example of {@link IEventCounterFactory} implementation.
53
53
* It creates {@link SystemOutEventCounter} that writes info about files being read and written to the {@link System#out}
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ This file is part of the iText (R) project.
47
47
* Factory that can be registered in {@link CounterManager} and creates a counter for every reader or writer class.
48
48
* <p>
49
49
* You can implement your own counter factory and register it like this:
50
- * <code>CounterManager.getInstance().registerCounter (new SystemOutCounterFactory());</code>
50
+ * <code>CounterManager.getInstance().register (new SystemOutCounterFactory());</code>
51
51
* <p>
52
52
* {@link SystemOutCounterFactory} is just an example of {@link ICounterFactory} implementation.
53
53
* It creates {@link SystemOutCounter} that writes info about files being read and written to the {@link System#out}
You can’t perform that action at this time.
0 commit comments