Uses of Interface
org.bukkit.permissions.Permissible

Packages that use Permissible
org.bukkit.command Classes relating to handling specialized non-chat player input. 
org.bukkit.entity Interfaces for non-voxel objects that can exist in a world, including all players, monsters, projectiles, etc. 
org.bukkit.entity.minecart Interfaces for various Minecart types. 
org.bukkit.permissions Classes dedicated to providing binary state properties to players. 
org.bukkit.plugin Classes specifically relating to loading software modules at runtime. 
 

Uses of Permissible in org.bukkit.command
 

Subinterfaces of Permissible in org.bukkit.command
 interface BlockCommandSender
           
 interface CommandSender
           
 interface ConsoleCommandSender
           
 interface RemoteConsoleCommandSender
           
 

Uses of Permissible in org.bukkit.entity
 

Subinterfaces of Permissible in org.bukkit.entity
 interface HumanEntity
          Represents a human entity, such as an NPC or a player
 interface Player
          Represents a player, connected or not
 

Uses of Permissible in org.bukkit.entity.minecart
 

Subinterfaces of Permissible in org.bukkit.entity.minecart
 interface CommandMinecart
           
 

Uses of Permissible in org.bukkit.permissions
 

Classes in org.bukkit.permissions that implement Permissible
 class PermissibleBase
          Base Permissible for use in any Permissible object via proxy or extension
 

Methods in org.bukkit.permissions that return Permissible
 Permissible PermissionAttachmentInfo.getPermissible()
          Gets the permissible this is attached to
 Permissible PermissionAttachment.getPermissible()
          Gets the Permissible that this is attached to
 

Methods in org.bukkit.permissions that return types with arguments of type Permissible
 Set<Permissible> Permission.getPermissibles()
          Gets a set containing every Permissible that has this permission.
 

Constructors in org.bukkit.permissions with parameters of type Permissible
PermissionAttachment(Plugin plugin, Permissible Permissible)
           
PermissionAttachmentInfo(Permissible permissible, String permission, PermissionAttachment attachment, boolean value)
           
 

Uses of Permissible in org.bukkit.plugin
 

Methods in org.bukkit.plugin that return types with arguments of type Permissible
 Set<Permissible> SimplePluginManager.getDefaultPermSubscriptions(boolean op)
           
 Set<Permissible> PluginManager.getDefaultPermSubscriptions(boolean op)
          Gets a set containing all subscribed Permissibles to the given default list, by op status
 Set<Permissible> SimplePluginManager.getPermissionSubscriptions(String permission)
           
 Set<Permissible> PluginManager.getPermissionSubscriptions(String permission)
          Gets a set containing all subscribed Permissibles to the given permission, by name
 

Methods in org.bukkit.plugin with parameters of type Permissible
 void SimplePluginManager.subscribeToDefaultPerms(boolean op, Permissible permissible)
           
 void PluginManager.subscribeToDefaultPerms(boolean op, Permissible permissible)
          Subscribes to the given Default permissions by operator status
 void SimplePluginManager.subscribeToPermission(String permission, Permissible permissible)
           
 void PluginManager.subscribeToPermission(String permission, Permissible permissible)
          Subscribes the given Permissible for information about the requested Permission, by name.
 void SimplePluginManager.unsubscribeFromDefaultPerms(boolean op, Permissible permissible)
           
 void PluginManager.unsubscribeFromDefaultPerms(boolean op, Permissible permissible)
          Unsubscribes from the given Default permissions by operator status
 void SimplePluginManager.unsubscribeFromPermission(String permission, Permissible permissible)
           
 void PluginManager.unsubscribeFromPermission(String permission, Permissible permissible)
          Unsubscribes the given Permissible for information about the requested Permission, by name.
 



Copyright © 2014. All rights reserved.