-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #20
- Loading branch information
Showing
3 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
common/src/main/java/io/github/moulberry/moulconfig/annotations/SearchTag.kt
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,13 @@ | ||
package io.github.moulberry.moulconfig.annotations | ||
|
||
/** | ||
* Add additional search tags to your [ConfigOption]. These search tags will not appear anywhere user facing, but | ||
* the [io.github.moulberry.moulconfig.gui.GuiOptionEditor.fulfillsSearch] function will use them to filter | ||
* additional elements in the search | ||
*/ | ||
@Retention(AnnotationRetention.RUNTIME) | ||
@Target(AnnotationTarget.FIELD) | ||
@Repeatable | ||
annotation class SearchTag( | ||
val value: String | ||
) |
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