001    package com.mockrunner.tag;
002    
003    /**
004     * Implementations of this interface can be used to simulate
005     * scriptlets and EL expressions as tag attributes.
006     * You can add it to the paramater map of any
007     * {@link com.mockrunner.tag.NestedTag} instance.
008     */
009    public interface RuntimeAttribute
010    {
011        public Object evaluate();
012    }