Limit access levels for InfoBox fields
Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
@@ -26,24 +26,25 @@ package net.runelite.client.ui.overlay.infobox;
|
|||||||
|
|
||||||
import java.awt.Color;
|
import java.awt.Color;
|
||||||
import java.awt.Image;
|
import java.awt.Image;
|
||||||
|
import lombok.AccessLevel;
|
||||||
import lombok.Getter;
|
import lombok.Getter;
|
||||||
import lombok.Setter;
|
import lombok.Setter;
|
||||||
import net.runelite.client.plugins.Plugin;
|
import net.runelite.client.plugins.Plugin;
|
||||||
|
|
||||||
public abstract class InfoBox
|
public abstract class InfoBox
|
||||||
{
|
{
|
||||||
@Getter
|
@Getter(AccessLevel.PACKAGE)
|
||||||
private final Plugin plugin;
|
private final Plugin plugin;
|
||||||
|
|
||||||
@Getter
|
@Getter
|
||||||
@Setter
|
@Setter
|
||||||
private Image image;
|
private Image image;
|
||||||
|
|
||||||
@Getter
|
@Getter(AccessLevel.PACKAGE)
|
||||||
@Setter
|
@Setter(AccessLevel.PACKAGE)
|
||||||
private Image scaledImage;
|
private Image scaledImage;
|
||||||
|
|
||||||
@Getter
|
@Getter(AccessLevel.PACKAGE)
|
||||||
@Setter
|
@Setter
|
||||||
private InfoBoxPriority priority;
|
private InfoBoxPriority priority;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user