Show chapter count

This commit is contained in:
inorichi
2015-10-19 17:27:41 +02:00
parent 9ad6efbada
commit 0c77a7034a
6 changed files with 71 additions and 17 deletions

View File

@@ -0,0 +1,7 @@
package eu.kanade.mangafeed.util;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@Target({ElementType.METHOD})
public @interface EventBusHook {}

View File

@@ -0,0 +1,13 @@
package eu.kanade.mangafeed.util.events;
public class ChapterCountEvent {
private int count;
public ChapterCountEvent(int count) {
this.count = count;
}
public int getCount() {
return count;
}
}