1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/* ------------------------------------ JavaOnTracks Thibaut Colar tcolar-jot AT colar DOT net Artistic Licence 2.0 http://www.javaontracks.net ------------------------------------ */ package net.jot.logger; /** * This is to be use with a FileTailer. * */ public interface JOTTailFilter { /** * Accept or not this line as one of the tail results. * * @param str Description of Parameter * @return Description of the Returned Value */ public boolean acceptLine(String str); }