1 package org.bukkit.permissions;
8 private final String permission;
10 private final boolean value;
13 if (permissible == null) {
14 throw new IllegalArgumentException(
"Permissible may not be null");
15 }
else if (permission == null) {
16 throw new IllegalArgumentException(
"Permissions may not be null");
19 this.permissible = permissible;
20 this.permission = permission;
21 this.attachment = attachment;