@@ -54,14 +54,15 @@ public interface EventService extends SciJavaService {
5454 * of a stack. For example:
5555 * </p>
5656 * <ol>
57- * <li>@{code imagej .module.event.ModulesUpdatedEvent} is published with
57+ * <li>{@link org.scijava .module.event.ModulesUpdatedEvent} is published with
5858 * {@link #publish}.</li>
59- * <li>{@code imagej.menu.DefaultMenuService} receives the event and handles
60- * it, publishing {@code imagej.menu.event.MenusUpdatedEvent} in response.</li>
59+ * <li>{@link org.scijava.menu.DefaultMenuService} receives the event and
60+ * handles it, publishing {@link org.scijava.menu.event.MenusUpdatedEvent} in
61+ * response.</li>
6162 * <li>A third party that subscribes to both
62- * {@code imagej .module.event.ModulesUpdatedEvent} and
63- * {@code imagej. menu.event.MenusUpdatedEvent} will receive the latter before
64- * the former.</li>
63+ * {@link org.scijava .module.event.ModulesUpdatedEvent} and
64+ * {@link org.scijava. menu.event.MenusUpdatedEvent} will receive the latter
65+ * before the former.</li>
6566 * </ol>
6667 * That said, the behavior of {@link #publish} depends on the thread from
6768 * which it is called: if called from a thread identified as a dispatch thread
@@ -84,14 +85,15 @@ public interface EventService extends SciJavaService {
8485 * resemble that of a queue. For example:
8586 * </p>
8687 * <ol>
87- * <li>{@code imagej .module.event.ModulesUpdatedEvent} is published with
88+ * <li>{@link org.scijava .module.event.ModulesUpdatedEvent} is published with
8889 * {@link #publishLater}.</li>
89- * <li>{@code imagej.menu.DefaultMenuService} receives the event and handles
90- * it, publishing {@code imagej.menu.event.MenusUpdatedEvent} in response.</li>
90+ * <li>{@link org.scijava.menu.DefaultMenuService} receives the event and
91+ * handles it, publishing {@link org.scijava.menu.event.MenusUpdatedEvent} in
92+ * response.</li>
9193 * <li>A third party that subscribes to both
92- * {@code imagej .module.event.ModulesUpdatedEvent} and
93- * {@code imagej. menu.event.MenusUpdatedEvent} will receive the former first,
94- * since it was already queued by the time the latter was published.</li>
94+ * {@link org.scijava .module.event.ModulesUpdatedEvent} and
95+ * {@link org.scijava. menu.event.MenusUpdatedEvent} will receive the former
96+ * first, since it was already queued by the time the latter was published.</li>
9597 * </ol>
9698 */
9799 <E extends SciJavaEvent > void publishLater (E e );
0 commit comments