blob: 205e48d8f7beb9acabc76fc51ea7662ca5156c7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
package de.hysky.skyblocker.skyblock.item.slottext;
import de.hysky.skyblocker.utils.container.RegexContainerMatcher;
import de.hysky.skyblocker.utils.container.SlotTextAdder;
import org.intellij.lang.annotations.Language;
import org.jetbrains.annotations.NotNull;
import java.util.regex.Pattern;
/**
* Simple implementation of a slot text adder.
* Extend this class and add it to {@link SlotTextManager#adders} to add text to any arbitrary slot.
*/
public abstract class SimpleSlotTextAdder extends RegexContainerMatcher implements SlotTextAdder {
/**
* Utility constructor that will compile the given string into a pattern.
*
* @see #SimpleSlotTextAdder(Pattern)
*/
protected SimpleSlotTextAdder(@NotNull @Language("RegExp") String titlePattern) {
super(titlePattern);
}
/**
* Creates a SlotTextAdder that will be applied to screens with titles that match the given pattern.
*
* @param titlePattern The pattern to match the screen title against.
*/
protected SimpleSlotTextAdder(@NotNull Pattern titlePattern) {
super(titlePattern);
}
/**
* Creates a SlotTextAdder that will be applied to all screens.
*/
protected SimpleSlotTextAdder() {
super();
}
}
|