1234567891011121314151617181920212223242526272829303132333435363738 |
- package com.gmail.nossr50.runnables.skills;
- import com.gmail.nossr50.datatypes.player.McMMOPlayer;
- import com.gmail.nossr50.datatypes.skills.PrimarySkillType;
- import com.gmail.nossr50.util.experience.ExperienceBarManager;
- import org.bukkit.scheduler.BukkitRunnable;
- public class ExperienceBarHideTask extends BukkitRunnable {
- private final McMMOPlayer mcMMOPlayer;
- private final PrimarySkillType primarySkillType;
- private final ExperienceBarManager experienceBarManagerRef;
- public ExperienceBarHideTask(ExperienceBarManager experienceBarManagerRef, McMMOPlayer mcMMOPlayer, PrimarySkillType primarySkillType) {
- this.experienceBarManagerRef = experienceBarManagerRef;
- this.mcMMOPlayer = mcMMOPlayer;
- this.primarySkillType = primarySkillType;
- }
- /**
- * When an object implementing interface <code>Runnable</code> is used
- * to create a thread, starting the thread causes the object's
- * <code>run</code> method to be called in that separately executing
- * thread.
- * <p>
- * The general contract of the method <code>run</code> is that it may
- * take any action whatsoever.
- *
- * @see Thread#run()
- */
- @Override
- public void run() {
- if (experienceBarManagerRef == null || mcMMOPlayer == null)
- return;
- experienceBarManagerRef.hideExperienceBar(primarySkillType);
- experienceBarManagerRef.clearTask(primarySkillType);
- }
- }
|