Class Group

java.lang.Object
  extended by Group

public class Group
extends java.lang.Object

Group.java - Group stuff.


Field Summary
Modifier and Type Field and Description
 boolean Administrator
          If true all players within this group have administrator privileges
 boolean CanModifyWorld
          If false this player can not modify chests or furnaces and can not destroy/create blocks
 java.lang.String[] Commands
          List of commands this group can use
 boolean DefaultGroup
          Is true if it's the default group
 int ID
          Group ID - used for database transactions
 boolean IgnoreRestrictions
          If true all players within this group ignore restrictions
 java.lang.String[] InheritedGroups
          List of groups this group inherits/has control over
 java.lang.String Name
          Group Name
 java.lang.String Prefix
          Group Prefix/Color
 
Constructor Summary
Constructor and Description
Group()
           
 
Method Summary
Modifier and Type Method and Description
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ID

public int ID
Group ID - used for database transactions


Name

public java.lang.String Name
Group Name


Prefix

public java.lang.String Prefix
Group Prefix/Color


Commands

public java.lang.String[] Commands
List of commands this group can use


InheritedGroups

public java.lang.String[] InheritedGroups
List of groups this group inherits/has control over


DefaultGroup

public boolean DefaultGroup
Is true if it's the default group


IgnoreRestrictions

public boolean IgnoreRestrictions
If true all players within this group ignore restrictions


Administrator

public boolean Administrator
If true all players within this group have administrator privileges


CanModifyWorld

public boolean CanModifyWorld
If false this player can not modify chests or furnaces and can not destroy/create blocks

Constructor Detail

Group

public Group()