Lines Matching refs:append

50  * <li>java.util.logging.FileHandler.append specifies whether this
51 * {@code FileHandler} should append onto existing files, defaults to
116 // whether the FileHandler should open a existing file for output in append
118 private boolean append;
181 && (!append || files[0].length() >= limit)) {
207 new FileOutputStream(fileName, append)), files[0].length());
222 append = (a == null) ? getBooleanProperty(className + ".append",
282 sb.append(value, cur, next - cur - 1).append(gen);
286 sb.append(value, cur, next - cur - 1).append(uniqueID);
294 sb.append(value, cur, next - cur - 1).append(tempPath);
296 sb.append(File.separator);
300 sb.append(value, cur, next - cur - 1).append(homePath);
302 sb.append(File.separator);
306 sb.append(value, cur, next - cur - 1).append('%');
309 sb.append(value, cur, next - cur);
317 sb.append(value, cur, value.length - cur);
320 sb.append(".").append(gen);
324 sb.append(".").append(uniqueID);
392 * is initialized to one and the value of {@code append} becomes the new
393 * instance's append mode. The remaining configuration is done using
399 * @param append
400 * the append mode.
408 public FileHandler(String pattern, boolean append) throws IOException {
412 init(pattern, Boolean.valueOf(append), Integer.valueOf(DEFAULT_LIMIT),
452 * count is initialized to {@code count} and the append mode is set to
453 * {@code append}. The remaining configuration is done using
465 * @param append
466 * the append mode.
475 public FileHandler(String pattern, int limit, int count, boolean append) throws IOException {
482 init(pattern, Boolean.valueOf(append), Integer.valueOf(limit), Integer.valueOf(count));