Lines Matching defs:group
34 * time, owner and group of the file, although some of these could be unavailable
58 private String group = null;
113 * Returns the group name of the file as returned by the FTP
114 * server, if provided. This could be a name or a group id (number).
116 * @return a {@code String} containing the group name or
120 return group;
124 * Sets the name of the group to which the file belong. Intended mostly to be
127 * @param group The name of the group to which the file belong, or {@code null}
131 public FtpDirEntry setGroup(String group) {
132 this.group = group;
214 * @param p the Permission (user, group, others) to check.
227 * @param p the Permission (user, group, others) to check.
240 * @param p the Permission (user, group, others) to check.
254 * the User, group or owner (0, 1 and 2 respectively) while the second
256 * <p>E.G.: {@code permissions[1][2]} is the group/execute permission.</p>
318 * type between brackets, followed by the user and group between
327 return name + " [" + type + "] (" + user + " / " + group + ") " + size;
329 return name + " [" + type + "] (" + user + " / " + group + ") {" + size + "} " + java.text.DateFormat.getDateInstance().format(lastModified);