Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/states/RangeState.java @ 444:932a5e3c7fa1
ISSUE-72 Repaired broken XPath expression in MainValuesService to extract start and end kilometer.
flys-artifacts/trunk@1936 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Tue, 17 May 2011 11:53:02 +0000 |
parents | c21fb8de54f8 |
children | acf3b49ec31f |
line wrap: on
line source
package de.intevation.flys.artifacts.states; import org.apache.log4j.Logger; /** * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public abstract class RangeState extends DefaultState { /** The logger that is used in this class.*/ private static Logger logger = Logger.getLogger(RangeState.class); public RangeState() { } /** * Validates a given range with a given valid range. * * @param fromValid Valid lower value of the range. * @param toValid Valid upper value of the range. * @param from The lower value. * @param to The upper value. * @param step The step width. * * @return true, if everything was fine, otherwise an exception is thrown. */ protected boolean validateBounds( double fromValid, double toValid, double from, double to, double step) throws IllegalArgumentException { logger.debug("RangeState.validateRange"); if (from < fromValid) { logger.error( "Invalid 'from'. " + from + " is smaller than " + fromValid); throw new IllegalArgumentException("error_feed_from_out_of_range"); } else if (to > toValid) { logger.error( "Invalid 'to'. " + to + " is bigger than " + toValid); throw new IllegalArgumentException("error_feed_to_out_of_range"); } else if (from > to) { throw new IllegalArgumentException("error_feed_from_bigger_to"); } return true; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :