| java.lang.Object com.oreilly.servlet.multipart.Part
All known Subclasses: com.oreilly.servlet.multipart.ParamPart, com.oreilly.servlet.multipart.FilePart,
Part | abstract public class Part (Code) | | A Part is an abstract upload part which represents an
INPUT form element in a multipart/form-data form
submission.
See Also: FilePart See Also: ParamPart author: Geoff Soutter version: 1.0, 2000/10/27, initial revision |
Constructor Summary | |
| Part(String name) Constructs an upload part with the given name. |
Method Summary | |
public String | getName() Returns the name of the form element that this Part corresponds to. | public boolean | isFile() Returns true if this Part is a FilePart. | public boolean | isParam() Returns true if this Part is a ParamPart. |
Part | Part(String name)(Code) | | Constructs an upload part with the given name.
|
getName | public String getName()(Code) | | Returns the name of the form element that this Part corresponds to.
the name of the form element that this Part corresponds to. |
isFile | public boolean isFile()(Code) | | Returns true if this Part is a FilePart.
true if this is a FilePart. |
isParam | public boolean isParam()(Code) | | Returns true if this Part is a ParamPart.
true if this is a ParamPart. |
|
|