forked from alkarinv/BattleArena
-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More docs and CompetitionListener API
- Loading branch information
Showing
4 changed files
with
145 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
plugin/src/main/java/org/battleplugins/arena/event/CompetitionListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package org.battleplugins.arena.event; | ||
|
||
import org.battleplugins.arena.competition.Competition; | ||
import org.battleplugins.arena.competition.CompetitionLike; | ||
|
||
/** | ||
* A listener for competitions. | ||
* <p> | ||
* This functionality extends upon {@link ArenaListener} and | ||
* further isolates any event actions to the given {@link T competition}. | ||
* | ||
* @param <T> the type of competition | ||
*/ | ||
public class CompetitionListener<T extends Competition<T>> implements ArenaListener, CompetitionLike<T> { | ||
private final T competition; | ||
|
||
public CompetitionListener(T competition) { | ||
this.competition = competition; | ||
} | ||
|
||
@Override | ||
public T getCompetition() { | ||
return competition; | ||
} | ||
} |