Files
Paper/paper-api/src/main/java/org/bukkit/material/Tripwire.java
Aikar 2825ece820 Fix Spigot annotation mistakes
while some of these may of been true, they are extreme cases and cause
a ton of noise to plugin developers.

Use ApiStatus.Internal instead of Deprecated for actual internal API
that continues to have use (internally).

These do not help plugin developers if they bring moise noise than value.
2019-03-24 18:39:01 -04:00

82 lines
1.9 KiB
Java

package org.bukkit.material;
import org.bukkit.Material;
/**
* Represents the tripwire
*
* @deprecated all usage of MaterialData is deprecated and subject to removal.
* Use {@link org.bukkit.block.data.BlockData}.
*/
@Deprecated(since = "1.13", forRemoval = true)
public class Tripwire extends MaterialData {
public Tripwire() {
super(Material.LEGACY_TRIPWIRE);
}
/**
* @param type the type
* @param data the raw data value
* @deprecated Magic value
*/
@Deprecated(since = "1.6.2")
public Tripwire(final Material type, final byte data) {
super(type, data);
}
/**
* Test if tripwire is currently activated
*
* @return true if activated, false if not
*/
public boolean isActivated() {
return (getData() & 0x4) != 0;
}
/**
* Set tripwire activated state
*
* @param act - true if activated, false if not
*/
public void setActivated(boolean act) {
int dat = getData() & (0x8 | 0x3);
if (act) {
dat |= 0x4;
}
setData((byte) dat);
}
/**
* Test if object triggering this tripwire directly
*
* @return true if object activating tripwire, false if not
*/
public boolean isObjectTriggering() {
return (getData() & 0x1) != 0;
}
/**
* Set object triggering state for this tripwire
*
* @param trig - true if object activating tripwire, false if not
*/
public void setObjectTriggering(boolean trig) {
int dat = getData() & 0xE;
if (trig) {
dat |= 0x1;
}
setData((byte) dat);
}
@Override
public Tripwire clone() {
return (Tripwire) super.clone();
}
@Override
public String toString() {
return super.toString() + (isActivated() ? " Activated" : "") + (isObjectTriggering() ? " Triggered" : "");
}
}