1 16 package org.apache.commons.net.ftp; 17 import java.io.BufferedReader ; 18 import java.io.IOException ; 19 import java.util.List ; 20 21 97 public interface FTPFileEntryParser 98 { 99 109 FTPFile parseFTPEntry(String listEntry); 110 111 123 String readNextEntry(BufferedReader reader) throws IOException ; 124 125 126 138 List preParse(List original); 139 140 141 } 142 143 144 151 | Popular Tags |