Mercurial > dive4elements > gnv-client
diff gnv-artifacts/src/main/java/de/intevation/gnv/state/OutputStateBase.java @ 815:22c18083225e
Removed compiler warnings while JavaDoc generation.
gnv-artifacts/trunk@900 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 12 Apr 2010 06:59:33 +0000 |
parents | feae2f9d6c6f |
children | 8dc820099306 |
line wrap: on
line diff
--- a/gnv-artifacts/src/main/java/de/intevation/gnv/state/OutputStateBase.java Fri Apr 09 14:34:45 2010 +0000 +++ b/gnv-artifacts/src/main/java/de/intevation/gnv/state/OutputStateBase.java Mon Apr 12 06:59:33 2010 +0000 @@ -56,27 +56,15 @@ extends StateBase implements OutputState { - /** - * - */ public static final String XPATH_OUTPUT_MODE = "/art:action/art:out/@name"; - /** - * - */ public static final String XPATH_EXPORT_MODE = "/art:action/art:out/art:export/@name"; - /** - * - */ public static final String XPATH_MIME_TYPE = "/art:action/art:out/art:mime-type/@value"; - /** - * - */ public static final String XPATH_EXPORTS = "exportModes/export"; @@ -95,9 +83,6 @@ */ protected Collection<OutputMode> outputModes = null; - /** - * - */ protected String queryODVID = null; /** @@ -107,18 +92,12 @@ super(); } - /** - * - * @return - */ public Collection<OutputMode> getOutputModes() { log.debug("OutputStateBase.getOutputModes"); return this.outputModes; } - /** - * @param configuration - */ + @Override public void setup(Node configuration) { log.debug("OutputStateBase.setup"); @@ -185,23 +164,14 @@ } } - /** - * @param uuid - * @param context - * @throws StateException - */ + @Override public void advance(String uuid, CallContext context) throws StateException { } - /** - * - * @param uuid - * @param context - * @throws StateException - */ + @Override public void initialize(String uuid, CallContext context) throws StateException @@ -211,13 +181,6 @@ /** * This method needs to be defined by concrete subclasses. Nothing is done * here. - * - * @param format - * @param inputData - * @param outputStream - * @param uuid - * @param callMeta - * @throws StateException */ public void out( Document format, @@ -233,13 +196,6 @@ /** * This method needs to be defined by concrete subclasses. Nothing is done * here. - * - * @param outputMode - * @param inputData - * @param outputStream - * @throws StateException - * @see de.intevation.gnv.state.OutputState#out(java.lang.String, - * java.util.Collection, java.io.OutputStream) */ public void out(String outputMode, Collection<InputData> inputData, OutputStream outputStream) throws StateException { @@ -291,10 +247,6 @@ * This method should no longer be used, because it is not good to put a * chart into cache. Parameter changes done by the user wouldn't be detected * proper. - * - * @param uuid - * @param callContext - * @return * @deprecated */ protected Object getChartFromCache(String uuid, CallContext callContext) { @@ -357,7 +309,6 @@ /** * This method removes the data used for creating charts from cache. * - * @param uuid */ protected void removeChartResult(String uuid) { log.debug("OutputStateBase.getChartResult"); @@ -374,7 +325,6 @@ /** * This method should no longer be used. It removes a chart from cache. * - * @param uuid * @deprecated */ protected void removeChart(String uuid) { @@ -391,9 +341,6 @@ /** * This is an internal method used while database query. - * - * @param chart - * @param uuid */ protected void purifyChart(Object chart, String uuid) { log.debug("Prufify chart [" + uuid + "]"); @@ -407,12 +354,6 @@ /** * Use this method to feed a state with new data. - * - * @param context - * @param inputData - * @param uuid - * @return - * @throws StateException */ @Override public Document feed( @@ -431,10 +372,6 @@ * between this method and feed is, that this method should be used to * transfer some old input data required by this state. New data need to be * inserted via feed! - * - * @param inputData - * @param uuid - * @throws StateException */ @Override @SuppressWarnings({"static-access", "static-access", "static-access", "static-access"}) @@ -535,15 +472,7 @@ } } - /** - * - * @param outputMode - * @param inputData - * @param outputStream - * @param uuid - * @param callMeta - * @throws StateException - */ + public void out( String outputMode, Collection<InputData> inputData,