view gnv-artifacts/src/test/java/de/intevation/gnv/artifacts/TestCallContext.java @ 469:62fc63d0f71d

Added a new State in Product Verticalprofile in Timeseriespoints. Now it will be displayed the Years where measurements happened and than only the dates of the chosen Year will be fetched and displayed. gnv-artifacts/trunk@532 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Tue, 12 Jan 2010 12:42:53 +0000
parents e7f1c79bf9cd
children 4939236c2dc9
line wrap: on
line source
/**
 *
 */
package de.intevation.gnv.artifacts;

import de.intevation.artifacts.CallContext;
import de.intevation.artifacts.CallMeta;

/**
 * @author Tim Englich <tim.englich@intevation.de>
 * 
 */
public class TestCallContext implements CallContext {

    private Object globalContext = null;
    private CallMeta callMeta = null;

    /**
     * Constructor
     */
    public TestCallContext(Object globalContext, CallMeta callMeta) {
        this.globalContext = globalContext;
        this.callMeta = callMeta;
    }

    /**
     * @see de.intevation.artifacts.CallContext#afterBackground(int)
     */
    public void afterBackground(int action) {
    }

    /**
     * @see de.intevation.artifacts.CallContext#afterCall(int)
     */
    public void afterCall(int action) {
    }

    /**
     * @see de.intevation.artifacts.CallContext#globalContext()
     */
    public Object globalContext() {
        return this.globalContext;
    }

    public CallMeta getMeta() {
        return this.callMeta;
    }

    public Object getContextValue(Object key) {
        
        		return null;
    }

    public Object putContextValue(Object key, Object value) {
        
        		return null;
    }

}

http://dive4elements.wald.intevation.org