| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| TailerListenerAdapter |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * Licensed to the Apache Software Foundation (ASF) under one or more | |
| 3 | * contributor license agreements. See the NOTICE file distributed with | |
| 4 | * this work for additional information regarding copyright ownership. | |
| 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 | |
| 6 | * (the "License"); you may not use this file except in compliance with | |
| 7 | * the License. You may obtain a copy of the License at | |
| 8 | * | |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 | |
| 10 | * | |
| 11 | * Unless required by applicable law or agreed to in writing, software | |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, | |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 14 | * See the License for the specific language governing permissions and | |
| 15 | * limitations under the License. | |
| 16 | */ | |
| 17 | package org.apache.commons.io.input; | |
| 18 | ||
| 19 | /** | |
| 20 | * {@link TailerListener} Adapter. | |
| 21 | * | |
| 22 | * @version $Id: TailerListenerAdapter.java 1415850 2012-11-30 20:51:39Z ggregory $ | |
| 23 | * @since 2.0 | |
| 24 | */ | |
| 25 | 0 | public class TailerListenerAdapter implements TailerListener { |
| 26 | ||
| 27 | /** | |
| 28 | * The tailer will call this method during construction, | |
| 29 | * giving the listener a method of stopping the tailer. | |
| 30 | * @param tailer the tailer. | |
| 31 | */ | |
| 32 | public void init(final Tailer tailer) { | |
| 33 | 0 | } |
| 34 | ||
| 35 | /** | |
| 36 | * This method is called if the tailed file is not found. | |
| 37 | */ | |
| 38 | public void fileNotFound() { | |
| 39 | 0 | } |
| 40 | ||
| 41 | /** | |
| 42 | * Called if a file rotation is detected. | |
| 43 | * | |
| 44 | * This method is called before the file is reopened, and fileNotFound may | |
| 45 | * be called if the new file has not yet been created. | |
| 46 | */ | |
| 47 | public void fileRotated() { | |
| 48 | 0 | } |
| 49 | ||
| 50 | /** | |
| 51 | * Handles a line from a Tailer. | |
| 52 | * @param line the line. | |
| 53 | */ | |
| 54 | public void handle(final String line) { | |
| 55 | 0 | } |
| 56 | ||
| 57 | /** | |
| 58 | * Handles an Exception . | |
| 59 | * @param ex the exception. | |
| 60 | */ | |
| 61 | public void handle(final Exception ex) { | |
| 62 | 0 | } |
| 63 | ||
| 64 | } |