-
-
Notifications
You must be signed in to change notification settings - Fork 787
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Drop guava annotations and create annotation helper (#3389)
- Loading branch information
1 parent
9f4af88
commit 3eb485e
Showing
4 changed files
with
66 additions
and
6 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
62 changes: 62 additions & 0 deletions
62
Core/src/main/java/com/plotsquared/core/util/AnnotationHelper.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,62 @@ | ||
/* | ||
* _____ _ _ _____ _ | ||
* | __ \| | | | / ____| | | | ||
* | |__) | | ___ | |_| (___ __ _ _ _ __ _ _ __ ___ __| | | ||
* | ___/| |/ _ \| __|\___ \ / _` | | | |/ _` | '__/ _ \/ _` | | ||
* | | | | (_) | |_ ____) | (_| | |_| | (_| | | | __/ (_| | | ||
* |_| |_|\___/ \__|_____/ \__, |\__,_|\__,_|_| \___|\__,_| | ||
* | | | ||
* |_| | ||
* PlotSquared plot management system for Minecraft | ||
* Copyright (C) 2021 IntellectualSites | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
package com.plotsquared.core.util; | ||
|
||
import java.lang.annotation.Documented; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
import static java.lang.annotation.ElementType.METHOD; | ||
import static java.lang.annotation.ElementType.MODULE; | ||
import static java.lang.annotation.ElementType.PACKAGE; | ||
import static java.lang.annotation.ElementType.RECORD_COMPONENT; | ||
import static java.lang.annotation.ElementType.TYPE; | ||
|
||
/** | ||
* @since 6.3.0 | ||
*/ | ||
@AnnotationHelper.ApiDescription(info = "An internal class for custom annotations." + | ||
"This is in no form part of the API and is subject to change at any time.") | ||
public final class AnnotationHelper { | ||
|
||
private AnnotationHelper() { | ||
} | ||
|
||
@Documented | ||
@Retention(RetentionPolicy.CLASS) | ||
@Target(value = {METHOD, PACKAGE, MODULE, RECORD_COMPONENT, TYPE}) | ||
public @interface ApiDescription { | ||
/** | ||
* Returns additional information how to use a class for the API | ||
* | ||
* @return the version string | ||
* @since 6.3.0 | ||
*/ | ||
String info() default ""; | ||
} | ||
|
||
} |
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