Files
Bukkit/src/main/java/org/bukkit/permissions/ServerOperator.java
Wesley Wolfe 8a1dbc38da Pulling all pending Bukkit-JavaDoc changes
A special thanks goes to @aerouk for almost all of the changes found here.
2013-12-15 01:09:18 -05:00

25 lines
507 B
Java

package org.bukkit.permissions;
import org.bukkit.entity.Player;
/**
* Represents an object that may become a server operator, such as a {@link
* Player}
*/
public interface ServerOperator {
/**
* Checks if this object is a server operator
*
* @return true if this is an operator, otherwise false
*/
public boolean isOp();
/**
* Sets the operator status of this object
*
* @param value New operator value
*/
public void setOp(boolean value);
}