mirror of
https://github.com/filoghost/HolographicDisplays.git
synced 2025-01-20 06:41:20 +01:00
Update toString() methods
This commit is contained in:
parent
0a1f7998e9
commit
15f88dacb3
@ -87,16 +87,16 @@ public class DefaultVisibilitySettings implements VisibilitySettings {
|
|||||||
visibilityByPlayer.clear();
|
visibilityByPlayer.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "VisibilitySettings ["
|
|
||||||
+ "defaultVisibility=" + defaultVisibility
|
|
||||||
+ ", visibilityByPlayer=" + visibilityByPlayer
|
|
||||||
+ "]";
|
|
||||||
}
|
|
||||||
|
|
||||||
public V2VisibilityManagerAdapter getV2Adapter() {
|
public V2VisibilityManagerAdapter getV2Adapter() {
|
||||||
return v2Adapter;
|
return v2Adapter;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "DefaultVisibilitySettings{"
|
||||||
|
+ "defaultVisibility=" + defaultVisibility
|
||||||
|
+ ", visibilityByPlayer=" + visibilityByPlayer
|
||||||
|
+ "}";
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -219,7 +219,11 @@ public abstract class BaseHologram<T extends EditableHologramLine> extends BaseH
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "Hologram [position=" + getBasePosition() + ", lines=" + lines + ", deleted=" + isDeleted() + "]";
|
return "Hologram{"
|
||||||
|
+ "position=" + getBasePosition()
|
||||||
|
+ ", lines=" + lines
|
||||||
|
+ ", deleted=" + isDeleted()
|
||||||
|
+ "}";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -101,12 +101,12 @@ public class BaseHologramPosition {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "HologramPosition ["
|
return "HologramPosition{"
|
||||||
+ "world=" + world
|
+ "world=" + world
|
||||||
+ ", x=" + x
|
+ ", x=" + x
|
||||||
+ ", y=" + y
|
+ ", y=" + y
|
||||||
+ ", z=" + z
|
+ ", z=" + z
|
||||||
+ "]";
|
+ "}";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -79,7 +79,9 @@ public abstract class BaseItemLine extends BaseClickableLine {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "ItemLine [itemStack=" + itemStack + "]";
|
return "ItemLine{"
|
||||||
|
+ "itemStack=" + itemStack
|
||||||
|
+ "}";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,9 @@ public abstract class BaseTextLine extends BaseClickableLine {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "TextLine [text=" + text + "]";
|
return "TextLine{"
|
||||||
|
+ "text=" + text
|
||||||
|
+ "}";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -46,7 +46,10 @@ public class InternalHologram extends BaseHologram<InternalHologramLine> {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "InternalHologram [name=" + name + ", super=" + super.toString() + "]";
|
return "InternalHologram{"
|
||||||
|
+ "name=" + name
|
||||||
|
+ ", super=" + super.toString()
|
||||||
|
+ "}";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user