Source code: org/mitre/cvw/CVWMimeObject.java
1 /*
2 * Copyright (c) 1996-2000. The MITRE Corporation (http://www.mitre.org/).
3 * All rights reserved.
4 * CVW comes with ABSOLUTELY NO WARRANTY. See license for details.
5 */
6
7 package org.mitre.cvw;
8
9 /**
10 * Doesnt appear to be used except in reference to mimeTypes vector in
11 * DSIController and DocServerInterface. Can probably DELETE.
12 * @version
13 * @author Marc Cannava
14 * @see DSIController
15 * @see DocServerInterface
16 */
17 public class CVWMimeObject extends Object {
18 String type;
19 String desc;
20 String suffixes;
21
22 /**
23 * Constructor
24 */
25 public CVWMimeObject() {
26 }
27
28 /**
29 * Returns a string representation of this component and its values.
30 * @return a string representation of this component.
31 */
32 public String toString() {
33 String str = new String("Type: "+type+" Desc: ["+desc+"] Sufx: ["+suffixes+"]");
34
35 return(str);
36 }
37 }