[AB-199] adding build of sources and javadoc

fixing javadoc as various places
adding release plugin
adding developer connection to scm
updating release pipeline to new action versions
This commit is contained in:
Sheldan
2021-03-12 23:43:52 +01:00
parent 2ed456c164
commit a36a884ae9
19 changed files with 99 additions and 40 deletions

View File

@@ -34,6 +34,7 @@ public class EmoteStatsModel {
/**
* Whether or not this model contains *any* stats to render.
* @return Whether or not there are any stats to display
*/
public boolean areStatsAvailable() {
return !animatedEmotes.isEmpty() || !staticEmotes.isEmpty();

View File

@@ -6,17 +6,17 @@ package dev.sheldan.abstracto.statistic.emote.model;
*/
public interface EmoteStatsResult {
/**
* ID of the emote
* @return The ID of the emote
*/
Long getEmoteId();
/**
* ID of the server
* @return ID of the server
*/
Long getServerId();
/**
* Amount the emote with the ID has been used in the server with the ID
* @return Amount the emote with the ID has been used in the server with the ID
*/
Long getAmount();
}