Lines Matching defs:content
61 // get the content, and hope it is a Multipart Object
62 Object content = dh.getContent();
63 if (content instanceof Multipart) {
64 setupDisplay((Multipart)content);
66 setupErrorDisplay(content);
103 // for each one we create a button with the content type
156 protected void setupErrorDisplay(Object content) {
159 if (content == null)
162 error = "Object not of type Multipart, content class = " +
163 content.getClass().toString();