Assigns in-memory data to this file input element. During submission, instead of loading data from a file, the data is read from in-memory byte array. NOTE: Only use this method if you wish to upload in-memory data; if you instead wish to upload the contents of an actual file, use {@link
(final byte[] data)
| 85 | * @param data the in-memory data assigned to this file input element |
| 86 | */ |
| 87 | public final void setData(final byte[] data) { |
| 88 | data_ = data; |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * {@inheritDoc} |
no outgoing calls