Interface IGenHolo


public interface IGenHolo
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addPlayer(org.bukkit.entity.Player player)
    Add a player to this hologram.
    void
    This must be called when disabling the generator IGenerator.disable()
    Get the generator associated with this hologram.
    Get language iso associated with this hologram.
    Set<org.bukkit.entity.Player>
    Get the player associated with this hologram.
    void
    removePlayer(org.bukkit.entity.Player player)
    Remove a player from this hologram.
    void
    Set tier hologram display text.
    void
    Set timer hologram display text.
    void
    Update the hologram.
    void
    update(org.bukkit.entity.Player player)
    Update the hologram for a player.
  • Method Details

    • setTimerName

      void setTimerName(String timer)
      Set timer hologram display text.
    • setTierName

      void setTierName(String tier)
      Set tier hologram display text.
    • getIso

      String getIso()
      Get language iso associated with this hologram.
    • getPlayers

      Set<org.bukkit.entity.Player> getPlayers()
      Get the player associated with this hologram.
    • addPlayer

      void addPlayer(org.bukkit.entity.Player player)
      Add a player to this hologram.
    • removePlayer

      void removePlayer(org.bukkit.entity.Player player)
      Remove a player from this hologram.
    • getGenerator

      IGenerator getGenerator()
      Get the generator associated with this hologram.
    • update

      void update()
      Update the hologram.
    • update

      void update(org.bukkit.entity.Player player)
      Update the hologram for a player.
    • destroy

      void destroy()
      This must be called when disabling the generator IGenerator.disable()