comparison gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/DefaultOutputMode.java @ 958:d5d4dbda17cc

Add more Javadocs gnv/trunk@1102 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Tue, 18 May 2010 09:51:41 +0000
parents 89ade245ca7a
children 28a0628b11b0
comparison
equal deleted inserted replaced
957:33fb5bf4e62c 958:d5d4dbda17cc
13 /** 13 /**
14 * The UID of this Class. 14 * The UID of this Class.
15 */ 15 */
16 private static final long serialVersionUID = 7487880486604174521L; 16 private static final long serialVersionUID = 7487880486604174521L;
17 17
18 /**
19 * The name of the OutputMode
20 */
18 private String name = null; 21 private String name = null;
19 22
23 /**
24 * The mimetype of the OutputMode
25 */
20 private String mimeType = null; 26 private String mimeType = null;
21 27
28 /**
29 * The parameters that could be used for this OutputMode
30 */
22 private Collection<OutputParameter> outputParameter = null; 31 private Collection<OutputParameter> outputParameter = null;
23 32
33 /**
34 * The exports that can be called using this outputMode
35 */
24 private Map<String, ExportMode> exports; 36 private Map<String, ExportMode> exports;
25 37
38 /**
39 * Constructor
40 * @param name The name of the OutputMode
41 * @param mimeType The mimetype of the OutputMode
42 * @param outputParameter The parameters that could be used for this OutputMode
43 * @param exports The exports that can be called using this outputMode
44 */
26 public DefaultOutputMode( 45 public DefaultOutputMode(
27 String name, 46 String name,
28 String mimeType, 47 String mimeType,
29 Collection<OutputParameter> outputParameter, 48 Collection<OutputParameter> outputParameter,
30 Map<String, ExportMode> exports) 49 Map<String, ExportMode> exports)

http://dive4elements.wald.intevation.org