All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.permission.ServerOperator Maven / Gradle / Ivy

Go to download

A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.

There is a newer version: 1.6.0.1-PN
Show newest version
package cn.nukkit.permission;

/**
 * 能成为服务器管理员(OP)的对象。
* Who can be an operator(OP). * * @author MagicDroidX(code) @ Nukkit Project * @author 粉鞋大妈(javadoc) @ Nukkit Project * @see cn.nukkit.permission.Permissible * @since Nukkit 1.0 | Nukkit API 1.0.0 */ public interface ServerOperator { /** * 返回这个对象是不是服务器管理员。
* Returns if this object is an operator. * * @return 这个对象是不是服务器管理员。
if this object is an operator. * @since Nukkit 1.0 | Nukkit API 1.0.0 */ boolean isOp(); /** * 把这个对象设置成服务器管理员。
* Sets this object to be an operator or not to be. * * @param value {@code true}为授予管理员,{@code false}为取消管理员。
* {@code true} for giving this operator or {@code false} for cancelling. * @since Nukkit 1.0 | Nukkit API 1.0.0 */ void setOp(boolean value); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy