Skip to content

Commit

Permalink
updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
NonSwag committed Mar 29, 2024
1 parent 6ce87c8 commit 57615ec
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public interface AreaService {
* Deletes the given Area.
*
* @param area The Area to delete.
* @param <T> The type of the region.
* @return True if the deletion is successful, false otherwise.
*/
<T extends Region> boolean delete(RegionizedArea<T> area);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public interface FlagProvider {
* Checks if the flag has a state defined.
*
* @param flag The flag to check the state of.
* @param <T> The type of the flag.
* @return true if a state is defined, true otherwise.
*/
<T> boolean hasFlag(@NotNull Flag<T> flag);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
import java.util.Optional;
import java.util.Set;

/**
* FlagRegistry is an interface that provides methods for managing registered flags.
*/
public interface FlagRegistry {
/**
* Retrieves the set of flags associated with the given plugin.
Expand Down

0 comments on commit 57615ec

Please sign in to comment.