Home | History | Annotate | Download | only in multipart

Lines Matching defs:fileName

55     private String fileName = null;
74 this.fileName = file.getName();
81 * @param fileName the file name of the FilePart
87 public FilePartSource(String fileName, File file)
90 if (fileName != null) {
91 this.fileName = fileName;
109 * Return the current filename
110 * @return the filename.
114 return (fileName == null) ? "noname" : fileName;
118 * Return a new {@link FileInputStream} for the current filename.